diff options
author | Go MAEDA <maeda@farend.jp> | 2018-04-21 12:00:22 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-04-21 12:00:22 +0000 |
commit | a4ffda7b3714076ffd920efeeef86dd8c0e5710c (patch) | |
tree | 120e553396c7e9f17039ad397adea8057daec2e7 /app/views/my | |
parent | 07b9ce80f6252fd028c72db382183fdfd367a4b6 (diff) | |
download | redmine-a4ffda7b3714076ffd920efeeef86dd8c0e5710c.tar.gz redmine-a4ffda7b3714076ffd920efeeef86dd8c0e5710c.zip |
Use button as additional option for contextmenu (#26655).
Patch by Felix Gliesche.
git-svn-id: http://svn.redmine.org/redmine/trunk@17298 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/my')
-rw-r--r-- | app/views/my/blocks/_timelog.html.erb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/my/blocks/_timelog.html.erb b/app/views/my/blocks/_timelog.html.erb index f96ee6c2e..7354c757d 100644 --- a/app/views/my/blocks/_timelog.html.erb +++ b/app/views/my/blocks/_timelog.html.erb @@ -35,6 +35,7 @@ <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| %> @@ -42,6 +43,7 @@ <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(format_hours(entries_by_day[day].sum(&:hours))) %></em></td> + <td></td> </tr> <% entries_by_day[day].each do |entry| -%> <tr id="time-entry-<%= entry.id %>" class="time-entry hascontextmenu"> @@ -52,6 +54,7 @@ <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(format_hours(entry.hours)) %></td> + <td class="buttons"><%= link_to_context_menu %></td> </tr> <% end -%> <% end -%> |