diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-10-29 14:07:10 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-10-29 14:07:10 +0000 |
commit | 7a6f04c25fbb1166b909daff645727ba8c32f00b (patch) | |
tree | 25400fc5d4fa8d0059685fe6d5f8c5c512ee83b6 /app/views | |
parent | 18073c971e69fcfbfcafc8f2ec81768ea18220f8 (diff) | |
download | redmine-7a6f04c25fbb1166b909daff645727ba8c32f00b.tar.gz redmine-7a6f04c25fbb1166b909daff645727ba8c32f00b.zip |
Enables context menu on My Page for time entries.
git-svn-id: http://svn.redmine.org/redmine/trunk@15937 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/my/blocks/_timelog.html.erb | 32 |
1 files changed, 12 insertions, 20 deletions
diff --git a/app/views/my/blocks/_timelog.html.erb b/app/views/my/blocks/_timelog.html.erb index 6f4081f4e..bbdb194de 100644 --- a/app/views/my/blocks/_timelog.html.erb +++ b/app/views/my/blocks/_timelog.html.erb @@ -14,44 +14,36 @@ entries_by_day = entries.group_by(&:spent_on) </h3> <% if entries.any? %> +<%= form_tag({}, :data => {:cm_url => time_entries_context_menu_path}) do %> <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"> + <tr class="odd"> <td><strong><%= day == User.current.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"><%= entry.activity %></td> + </tr> + <% entries_by_day[day].each do |entry| -%> + <tr class="time-entry hascontextmenu" style="border-bottom: 1px solid #f5f5f5;"> + <td class="activity"> + <%= check_box_tag("ids[]", entry.id, false, :style => 'display:none;', :id => nil) %> + <%= entry.activity %> + </td> <td class="subject"><%= entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %></td> <td class="comments"><%= entry.comments %></td> <td class="hours"><%= html_hours("%.2f" % entry.hours) %></td> - <td class="buttons"> - <% if entry.editable_by?(@user) -%> - <%= link_to l(:button_edit), {:controller => 'timelog', :action => 'edit', :id => entry}, - :title => l(:button_edit), - :class => 'icon-only icon-edit' %> - <%= link_to l(:button_delete), {:controller => 'timelog', :action => 'destroy', :id => entry}, - :data => {:confirm => l(:text_are_you_sure)}, :method => :delete, - :title => l(:button_delete), - :class => 'icon-only icon-del' %> - <% end -%> - </td> - </tr> - <% end -%> + </tr> + <% end -%> <% end -%> </tbody> </table> +<% end %> <% else %> <p class="nodata"><%= l(:label_no_data) %></p> <% end %> |