##// END OF EJS Templates
Fixed: issue summary counts should link to the issue list without subprojects (#4525)....
Fixed: issue summary counts should link to the issue list without subprojects (#4525). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3283 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2929:1a65eb8b08b5
r3169:518779d96d81
Show More
_list.rhtml
41 lines | 1.7 KiB | text/html+ruby | RhtmlLexer
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>
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| -%>
<tr class="time-entry <%= cycle("odd", "even") %>">
<td class="spent_on"><%= format_date(entry.spent_on) %></td>
Jean-Philippe Lang
Propagates time tracking to the parent project (closes #433). Time report enhancements....
r1162 <td class="user"><%=h entry.user %></td>
<td class="activity"><%=h entry.activity %></td>
<td class="project"><%=h 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
Fixed: logtime entry duplicated when edited from parent project (#1728)....
r1712 <%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry, :project_id => nil},
Jean-Philippe Lang
Adds 2 permissions (closes #859):...
r1235 :title => l(:button_edit) %>
Jean-Philippe Lang
Fixed: logtime entry duplicated when edited from parent project (#1728)....
r1712 <%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry, :project_id => nil},
Jean-Philippe Lang
Adds 2 permissions (closes #859):...
r1235 :confirm => l(:text_are_you_sure),
:method => :post,
: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>