blob: beab65536322750da51fd4ac83225f5983cb1dd1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<% changesets.each do |changeset| %>
<div class="changeset <%= cycle('odd', 'even') %>">
<p><%= link_to_revision(changeset, changeset.repository,
:text => "#{l(:label_revision)} #{changeset.format_identifier}") %><br />
<span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
<div class="wiki">
<%= textilizable(changeset, :comments) %>
</div>
</div>
<% end %>
|