2008-01-20 18:38:11 +03:00
|
|
|
<% changesets.each do |changeset| %>
|
2008-02-03 18:15:52 +03:00
|
|
|
<div class="changeset <%= cycle('odd', 'even') %>">
|
|
|
|
<p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
|
|
|
|
:controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
|
2008-11-10 21:59:06 +03:00
|
|
|
<span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
|
2008-02-03 18:15:52 +03:00
|
|
|
<%= textilizable(changeset, :comments) %>
|
|
|
|
</div>
|
2008-01-20 18:38:11 +03:00
|
|
|
<% end %>
|