1
0
Mirror von https://github.com/redmine/redmine.git synchronisiert 2024-08-07 21:06:46 +02:00
redmine/app/views/issues/_changesets.rhtml
2008-02-03 15:15:52 +00:00

9 Zeilen
452 B
Plaintext

<% 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.committer) %></span></p>
<%= textilizable(changeset, :comments) %>
</div>
<% end %>