Mercurial > hg > soundsoftware-site
view app/views/issues/_history.rhtml @ 127:32b5adec7422 cannam
Bug #51: make New Member box show matching users only when at least 2 characters have been typed in search (avoid really long results lists)
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Wed, 19 Jan 2011 13:27:01 +0000 |
parents | 40f7cfd4df19 |
children | cbce1fd3b1b7 |
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 %>