##// END OF EJS Templates
Added :view_issues_history_journal_bottom hook...
Eric Davis -
r2087:996b2a5c1d78
parent child
Show More
@@ -1,15 +1,16
1 1 <% reply_links = authorize_for('issues', 'edit') -%>
2 2 <% for journal in journals %>
3 3 <div id="change-<%= journal.id %>" class="journal">
4 4 <h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
5 5 <%= content_tag('a', '', :name => "note-#{journal.indice}")%>
6 6 <%= format_time(journal.created_on) %> - <%= link_to_user(journal.user) %></h4>
7 7 <%= avatar(journal.user, :size => "32") %>
8 8 <ul>
9 9 <% for detail in journal.details %>
10 10 <li><%= show_detail(detail) %></li>
11 11 <% end %>
12 12 </ul>
13 13 <%= render_notes(journal, :reply_links => reply_links) unless journal.notes.blank? %>
14 14 </div>
15 <%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %>
15 16 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now