2008-05-30 21:42:25 +04:00
|
|
|
<% reply_links = authorize_for('issues', 'edit') -%>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% for journal in journals %>
|
2008-10-30 05:58:04 +03:00
|
|
|
<div id="change-<%= journal.id %>" class="journal">
|
|
|
|
<h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
|
|
|
|
<%= content_tag('a', '', :name => "note-#{journal.indice}")%>
|
2008-12-06 14:21:10 +03:00
|
|
|
<%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4>
|
2008-11-09 17:52:16 +03:00
|
|
|
<%= avatar(journal.user, :size => "32") %>
|
2008-10-30 05:58:04 +03:00
|
|
|
<ul>
|
|
|
|
<% for detail in journal.details %>
|
|
|
|
<li><%= show_detail(detail) %></li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
<%= render_notes(journal, :reply_links => reply_links) unless journal.notes.blank? %>
|
|
|
|
</div>
|
2008-12-06 00:03:55 +03:00
|
|
|
<%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% end %>
|