Mercurial > hg > soundsoftware-site
view app/views/issues/_history.rhtml @ 847:83740cd6705e cannam
Merge from branch "luisf"
author | Chris Cannam |
---|---|
date | Wed, 01 Feb 2012 14:34:18 +0000 |
parents | cbce1fd3b1b7 |
children |
line wrap: on
line source
<% reply_links = authorize_for('issues', 'edit') -%> <% for journal in journals %> <div id="change-<%= journal.id %>" class="<%= journal.css_classes %>"> <h4><div class="journal-link"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div> <%= avatar(journal.user, :size => "24") %> <%= content_tag('a', '', :name => "note-#{journal.indice}")%> <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4> <% if journal.details.any? %> <ul class="details"> <% for detail in journal.details %> <li><%= show_detail(detail) %></li> <% end %> </ul> <% end %> <%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %> </div> <%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %> <% end %> <% heads_for_wiki_formatter if User.current.allowed_to?(:edit_issue_notes, issue.project) || User.current.allowed_to?(:edit_own_issue_notes, issue.project) %>