summaryrefslogtreecommitdiffstats
path: root/nested_projects/app/views/issues/_changesets.rhtml
blob: 15b75c61de7d943d1d4ac74eb9b09526643854a3 (plain)
1
2
3
4
5
6
7
8
<% changesets.each do |changeset| %>
    <div class="changeset <%= cycle('odd', 'even') %>">
    <p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
                :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
        <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
    <%= textilizable(changeset, :comments) %>
    </div>
<% end %>