Redmine/app/views/issues/_changesets.html.erb
Toshi MARUYAMA bbbfaab9c7 rename .rhtml to .html.erb of app/views/issues/_changesets.rhtml.
:rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7005 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-09-01 13:48:17 +00:00

11 lines
457 B
Plaintext

<% changesets.each do |changeset| %>
<div class="changeset <%= cycle('odd', 'even') %>">
<p><%= link_to_revision(changeset, changeset.project,
: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 %>