##// END OF EJS Templates
Adds an autoscroll div around time entry list and report (#8809)....
Adds an autoscroll div around time entry list and report (#8809). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7982 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6885:bbbfaab9c77c
r7862:cce80c690c0d
Show More
_changesets.html.erb
10 lines | 457 B | text/plain | TextLexer
/ app / views / issues / _changesets.html.erb
<% 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 %>