Mercurial > hg > soundsoftware-site
diff app/views/timelog/_list.html.erb @ 1298:4f746d8966dd redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:28:30 +0100 |
parents | 622f24f53b42 |
children |
line wrap: on
line diff
--- a/app/views/timelog/_list.html.erb Fri Jun 14 09:07:32 2013 +0100 +++ b/app/views/timelog/_list.html.erb Fri Jun 14 09:28:30 2013 +0100 @@ -3,49 +3,35 @@ <div class="autoscroll"> <table class="list time-entries"> <thead> -<tr> -<th class="checkbox hide-when-print"> - <%= link_to image_tag('toggle_check.png'), - {}, - :onclick => 'toggleIssuesSelection(this); return false;', - :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> -</th> -<%= sort_header_tag('spent_on', :caption => l(:label_date), :default_order => 'desc') %> -<%= 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') %> -<th><%= l(:field_comments) %></th> -<%= sort_header_tag('hours', :caption => l(:field_hours)) %> -<th></th> -</tr> + <tr> + <th class="checkbox hide-when-print"> + <%= link_to image_tag('toggle_check.png'), + {}, + :onclick => 'toggleIssuesSelection(this); return false;', + :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> + </th> + <% @query.inline_columns.each do |column| %> + <%= column_header(column) %> + <% end %> + <th></th> + </tr> </thead> <tbody> <% entries.each do |entry| -%> -<tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu"> -<td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td> -<td class="spent_on"><%= format_date(entry.spent_on) %></td> -<td class="user"><%= link_to_user(entry.user) %></td> -<td class="activity"><%=h entry.activity %></td> -<td class="project"><%= link_to_project(entry.project) %></td> -<td class="subject"> -<% if entry.issue -%> -<%= entry.issue.visible? ? link_to_issue(entry.issue, :truncate => 50) : "##{entry.issue.id}" -%> -<% end -%> -</td> -<td class="comments"><%=h entry.comments %></td> -<td class="hours"><%= html_hours("%.2f" % entry.hours) %></td> -<td align="center"> -<% if entry.editable_by?(User.current) -%> - <%= link_to image_tag('edit.png'), edit_time_entry_path(entry), - :title => l(:button_edit) %> - <%= link_to image_tag('delete.png'), time_entry_path(entry), - :data => {:confirm => l(:text_are_you_sure)}, - :method => :delete, - :title => l(:button_delete) %> -<% end -%> -</td> -</tr> + <tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu"> + <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td> + <%= raw @query.inline_columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, entry)}</td>"}.join %> + <td align="center"> + <% if entry.editable_by?(User.current) -%> + <%= link_to image_tag('edit.png'), edit_time_entry_path(entry), + :title => l(:button_edit) %> + <%= link_to image_tag('delete.png'), time_entry_path(entry), + :data => {:confirm => l(:text_are_you_sure)}, + :method => :delete, + :title => l(:button_delete) %> + <% end -%> + </td> + </tr> <% end -%> </tbody> </table>