Redmine/app/views/issues/_changesets.rhtml

9 lines
428 B
Plaintext
Raw Normal View History

<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>