Mercurial > hg > soundsoftware-site
diff .svn/pristine/23/23ef48c3079c4ad7ff9c6850f3a7bce6b2c94752.svn-base @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/23/23ef48c3079c4ad7ff9c6850f3a7bce6b2c94752.svn-base Fri Feb 24 19:09:32 2012 +0000 @@ -0,0 +1,55 @@ +<% form_tag({}) do -%> +<%= hidden_field_tag 'back_url', url_for(params) %> +<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(Element.up(this, "form")); 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> +</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'), {:controller => 'timelog', :action => 'edit', :id => entry, :project_id => nil}, + :title => l(:button_edit) %> + <%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry, :project_id => nil}, + :confirm => l(:text_are_you_sure), + :method => :delete, + :title => l(:button_delete) %> +<% end -%> +</td> +</tr> +<% end -%> +</tbody> +</table> +</div> +<% end -%> + +<%= context_menu time_entries_context_menu_path %>