You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_changesets.rhtml 452B

12345678
  1. <% changesets.each do |changeset| %>
  2. <div class="changeset <%= cycle('odd', 'even') %>">
  3. <p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
  4. :controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
  5. <span class="author"><%= authoring(changeset.committed_on, changeset.committer) %></span></p>
  6. <%= textilizable(changeset, :comments) %>
  7. </div>
  8. <% end %>