_history.rhtml
16 lines
| 760 B
| text/html+ruby
|
RhtmlLexer
|
r1466 | <% reply_links = authorize_for('issues', 'edit') -%> | ||
|
r330 | <% for journal in journals %> | ||
|
r1960 | <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}")%> | ||||
|
r2092 | <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4> | ||
|
r1998 | <%= avatar(journal.user, :size => "32") %> | ||
|
r1960 | <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> | ||||
|
r2087 | <%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %> | ||
|
r330 | <% end %> | ||