##// END OF EJS Templates
Fix IE6 display bug on the issue list....
Fix IE6 display bug on the issue list. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1285 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1183:e951d8458413
r1270:180fe8f6a47e
Show More
_history.rhtml
13 lines | 492 B | text/html+ruby | RhtmlLexer
<% for journal in journals %>
<div id="change-<%= journal.id %>">
<h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
<%= content_tag('a', '', :name => "note-#{journal.indice}")%>
<%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
<ul>
<% for detail in journal.details %>
<li><%= show_detail(detail) %></li>
<% end %>
</ul>
<%= render_notes(journal) unless journal.notes.blank? %>
</div>
<% end %>