summaryrefslogtreecommitdiffstats
path: root/app/views/issues/tabs/_time_entries.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/issues/tabs/_time_entries.html.erb')
-rw-r--r--app/views/issues/tabs/_time_entries.html.erb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/views/issues/tabs/_time_entries.html.erb b/app/views/issues/tabs/_time_entries.html.erb
index c34edc074..1807475bd 100644
--- a/app/views/issues/tabs/_time_entries.html.erb
+++ b/app/views/issues/tabs/_time_entries.html.erb
@@ -1,7 +1,9 @@
<% for time_entry in time_entries%>
<div id="time-entry-<%= time_entry.id %>" class="time_entry journal">
+ <div class="note">
<% if time_entry.editable_by?(User.current) -%>
<div class="contextual">
+ <span class="journal-actions">
<%= link_to l(:button_edit), edit_time_entry_path(time_entry),
:title => l(:button_edit),
:class => 'icon-only icon-edit' %>
@@ -10,9 +12,10 @@
:method => :delete,
:title => l(:button_delete),
:class => 'icon-only icon-del' %>
+ </span>
</div>
<% end -%>
- <h4>
+ <h4 class='note-header'>
<%= avatar(time_entry.user, :size => "24") %>
<%= authoring time_entry.created_on, time_entry.user, :label => :label_added_time_by %>
</h4>
@@ -23,6 +26,7 @@
</li>
</ul>
<p><%= time_entry.comments %></p>
+ </div>
</div>
<%= call_hook(:view_issues_history_time_entry_bottom, { :time_entry => time_entry }) %>
<% end %> \ No newline at end of file