##// END OF EJS Templates
Replaces find(:all) calls....
Replaces find(:all) calls. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10914 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9885:6a2ca5e03427
r10687:5b21efd4a432
Show More
_list.html.erb
55 lines | 2.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}) do -%>
Toshi MARUYAMA
add bulk edit items and context menu in time entries list view (#7996)....
r5194 <%= hidden_field_tag 'back_url', url_for(params) %>
Jean-Philippe Lang
Adds an autoscroll div around time entry list and report (#8809)....
r7862 <div class="autoscroll">
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <table class="list time-entries">
<thead>
Jean-Philippe Lang
Time report can be done at issue level (closes #970) + timelog views xhtml validation....
r1304 <tr>
Toshi MARUYAMA
add bulk edit items and context menu in time entries list view (#7996)....
r5194 <th class="checkbox hide-when-print">
Toshi MARUYAMA
remove trailing white-spaces app/views/timelog/_list.html.erb...
r7158 <%= link_to image_tag('toggle_check.png'),
{},
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 :onclick => 'toggleIssuesSelection(this); return false;',
Toshi MARUYAMA
add bulk edit items and context menu in time entries list view (#7996)....
r5194 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
</th>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <%= sort_header_tag('spent_on', :caption => l(:label_date), :default_order => 'desc') %>
Jean-Philippe Lang
Validates sort_key and sort_order params (#2378)....
r2169 <%= sort_header_tag('user', :caption => l(:label_member)) %>
<%= sort_header_tag('activity', :caption => l(:label_activity)) %>
<%= sort_header_tag('project', :caption => l(:label_project)) %>
<%= sort_header_tag('issue', :caption => l(:label_issue), :default_order => 'desc') %>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <th><%= l(:field_comments) %></th>
<%= sort_header_tag('hours', :caption => l(:field_hours)) %>
<th></th>
Jean-Philippe Lang
Time report can be done at issue level (closes #970) + timelog views xhtml validation....
r1304 </tr>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 </thead>
<tbody>
<% entries.each do |entry| -%>
Toshi MARUYAMA
add bulk edit items and context menu in time entries list view (#7996)....
r5194 <tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu">
<td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <td class="spent_on"><%= format_date(entry.spent_on) %></td>
Toshi MARUYAMA
HTML escape at app/views/timelog/_list.rhtml....
r6265 <td class="user"><%= link_to_user(entry.user) %></td>
Jean-Philippe Lang
Propagates time tracking to the parent project (closes #433). Time report enhancements....
r1162 <td class="activity"><%=h entry.activity %></td>
Toshi MARUYAMA
HTML escape at app/views/timelog/_list.rhtml....
r6265 <td class="project"><%= link_to_project(entry.project) %></td>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <td class="subject">
Jean-Philippe Lang
Propagates time tracking to the parent project (closes #433). Time report enhancements....
r1162 <% if entry.issue -%>
Jean-Philippe Lang
Don't reveal issue subjects if user is only allowed to view spent time (#3187)....
r2929 <%= entry.issue.visible? ? link_to_issue(entry.issue, :truncate => 50) : "##{entry.issue.id}" -%>
Jean-Philippe Lang
Propagates time tracking to the parent project (closes #433). Time report enhancements....
r1162 <% end -%>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 </td>
<td class="comments"><%=h entry.comments %></td>
Jean-Philippe Lang
Propagates time tracking to the parent project (closes #433). Time report enhancements....
r1162 <td class="hours"><%= html_hours("%.2f" % entry.hours) %></td>
Jean-Philippe Lang
Adds 2 permissions (closes #859):...
r1235 <td align="center">
<% if entry.editable_by?(User.current) -%>
Jean-Philippe Lang
Use named routes....
r9755 <%= link_to image_tag('edit.png'), edit_time_entry_path(entry),
Jean-Philippe Lang
Adds 2 permissions (closes #859):...
r1235 :title => l(:button_edit) %>
Jean-Philippe Lang
Use named routes....
r9755 <%= link_to image_tag('delete.png'), time_entry_path(entry),
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 :data => {:confirm => l(:text_are_you_sure)},
Eric Davis
Refactor: convert timelogs to a REST resource (:time_entries)...
r4136 :method => :delete,
Jean-Philippe Lang
Adds 2 permissions (closes #859):...
r1235 :title => l(:button_delete) %>
<% end -%>
</td>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 </tr>
<% end -%>
Jean-Philippe Lang
Time report can be done at issue level (closes #970) + timelog views xhtml validation....
r1304 </tbody>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 </table>
Jean-Philippe Lang
Adds an autoscroll div around time entry list and report (#8809)....
r7862 </div>
Toshi MARUYAMA
add bulk edit items and context menu in time entries list view (#7996)....
r5194 <% end -%>
<%= context_menu time_entries_context_menu_path %>