diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-06-20 07:11:26 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-06-20 07:11:26 +0000 |
commit | 0714ced81572a1501d37bc866855a7f339c3bf03 (patch) | |
tree | 7c47bf17258264168494a7bda5f31036cbaab132 /app/views | |
parent | be660e11cc2bf68b94451f77e612e0ee0cd666cc (diff) | |
download | redmine-0714ced81572a1501d37bc866855a7f339c3bf03.tar.gz redmine-0714ced81572a1501d37bc866855a7f339c3bf03.zip |
Add time entries tab to issue history tabs (#3058).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18274 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/tabs/_time_entries.html.erb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/views/issues/tabs/_time_entries.html.erb b/app/views/issues/tabs/_time_entries.html.erb new file mode 100644 index 000000000..931a8df39 --- /dev/null +++ b/app/views/issues/tabs/_time_entries.html.erb @@ -0,0 +1,28 @@ +<% for time_entry in tab[:locals][:time_entries] %> + <div id="time-entry-<%= time_entry.id %>" class="time_entry journal"> + <% if time_entry.editable_by?(User.current) -%> + <div class="contextual"> + <%= link_to l(:button_edit), edit_time_entry_path(time_entry), + :title => l(:button_edit), + :class => 'icon-only icon-edit' %> + <%= link_to l(:button_delete), time_entry_path(time_entry), + :data => {:confirm => l(:text_are_you_sure)}, + :method => :delete, + :title => l(:button_delete), + :class => 'icon-only icon-del' %> + </div> + <% end -%> + <h4> + <%= avatar(time_entry.user, :size => "24") %> + <%= authoring time_entry.created_on, time_entry.user, :label => :label_added_time_by %> + </h4> + <ul class="details"> + <li> + <strong><%= l(:label_time_entry_plural) %></strong>: + <%= l_hours_short time_entry.hours %> + </li> + </ul> + <p><%= time_entry.comments %></p> + </div> + <%= call_hook(:view_issues_history_time_entry_bottom, { :time_entry => time_entry }) %> +<% end %>
\ No newline at end of file |