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