view app/views/issues/_changesets.rhtml @ 182:5b074cadc4d1 feature_55

Institution order number explicit in seed data file and now correctly processed.
author luisf
date Thu, 03 Feb 2011 14:42:31 +0000
parents 1d32c0a0efbf
children af80e5618e9b
line wrap: on
line source
<% changesets.each do |changeset| %>
    <div class="changeset <%= cycle('odd', 'even') %>">
    <p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
                :controller => 'repositories', :action => 'revision', :id => changeset.project, :rev => changeset.revision) %><br />
        <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
    <div class="changeset-changes">
        <%= textilizable(changeset, :comments) %>
    </div>
    </div>
<% end %>