_history.html.erb
21 lines
| 1023 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 %>"> | ||
|
r8445 | <h4><%= link_to "##{journal.indice}", {:anchor => "note-#{journal.indice}"}, :class => "journal-link" %> | ||
|
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"> | ||||
|
r8601 | <% details_to_strings(journal.details).each do |string| %> | ||
<li><%= string %></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) %> | ||||