##// END OF EJS Templates
Refactor: move method to model with compatibility wrapper...
Refactor: move method to model with compatibility wrapper git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4282 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3784:dbb864535353
r4168:0ca74df60403
Show More
_changesets.rhtml
10 lines | 509 B | text/html+ruby | RhtmlLexer
<% changesets.each do |changeset| %>
<div class="changeset <%= cycle('odd', 'even') %>">
<p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
:controller => 'repositories', :action => 'revision', :id => changeset.project, :rev => changeset.revision) %><br />
<span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
<div class="changeset-changes">
<%= textilizable(changeset, :comments) %>
</div>
</div>
<% end %>