_history.html.erb
21 lines
| 1017 B
| text/plain
|
TextLexer
|
r1466 | <% reply_links = authorize_for('issues', 'edit') -%> | ||
|
r330 | <% for journal in journals %> | ||
|
r3948 | <div id="change-<%= journal.id %>" class="<%= journal.css_classes %>"> | ||
|
r3784 | <h4><div class="journal-link"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div> | ||
|
r3170 | <%= avatar(journal.user, :size => "24") %> | ||
|
r1960 | <%= content_tag('a', '', :name => "note-#{journal.indice}")%> | ||
|
r7228 | <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4> | ||
|
r7181 | |||
|
r3552 | <% if journal.details.any? %> | ||
<ul class="details"> | ||||
<% for detail in journal.details %> | ||||
|
r1960 | <li><%= show_detail(detail) %></li> | ||
|
r3552 | <% end %> | ||
|
r1960 | </ul> | ||
|
r3552 | <% end %> | ||
|
r3480 | <%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %> | ||
|
r1960 | </div> | ||
|
r2087 | <%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %> | ||
|
r330 | <% end %> | ||
|
r5120 | |||
<% heads_for_wiki_formatter if User.current.allowed_to?(:edit_issue_notes, issue.project) || User.current.allowed_to?(:edit_own_issue_notes, issue.project) %> | ||||