Mercurial > hg > soundsoftware-site
diff .svn/pristine/e9/e907a83f032fcb91aee4dcf2f7e14ae7c9fab77a.svn-base @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/e9/e907a83f032fcb91aee4dcf2f7e14ae7c9fab77a.svn-base Tue Jan 14 14:37:42 2014 +0000 @@ -0,0 +1,52 @@ +<h3> + <%= link_to l(:label_spent_time), time_entries_path(:user_id => 'me') %> + (<%= l(:label_last_n_days, 7) %>) +</h3> +<% +entries = timelog_items +entries_by_day = entries.group_by(&:spent_on) +%> + +<div class="total-hours"> +<p><%= l(:label_total_time) %>: <%= html_hours("%.2f" % entries.sum(&:hours).to_f) %></p> +</div> + +<% if entries.any? %> +<table class="list time-entries"> +<thead><tr> +<th><%= l(:label_activity) %></th> +<th><%= l(:label_project) %></th> +<th><%= l(:field_comments) %></th> +<th><%= l(:field_hours) %></th> +<th></th> +</tr></thead> +<tbody> +<% entries_by_day.keys.sort.reverse.each do |day| %> + <tr class="odd"> + <td><strong><%= day == Date.today ? l(:label_today).titleize : format_date(day) %></strong></td> + <td colspan="2"></td> + <td class="hours"><em><%= html_hours("%.2f" % entries_by_day[day].sum(&:hours).to_f) %></em></td> + <td></td> + </tr> + <% entries_by_day[day].each do |entry| -%> + <tr class="time-entry" style="border-bottom: 1px solid #f5f5f5;"> + <td class="activity"><%=h entry.activity %></td> + <td class="subject"><%=h entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %></td> + <td class="comments"><%=h entry.comments %></td> + <td class="hours"><%= html_hours("%.2f" % entry.hours) %></td> + <td class="buttons"> + <% if entry.editable_by?(@user) -%> + <%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry}, + :title => l(:button_edit) %> + <%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry}, + :data => {:confirm => l(:text_are_you_sure)}, + :method => :delete, + :title => l(:button_delete) %> + <% end -%> + </td> + </tr> + <% end -%> +<% end -%> +</tbody> +</table> +<% end %>