##// END OF EJS Templates
Applies the same style to the admin project tree than issues....
Applies the same style to the admin project tree than issues. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3621 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3480:f4be4d101ba1
r3507:ce549933c8ab
Show More
_history.rhtml
17 lines | 772 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Adds a Reply link to each issue note (#739). Reply is pre-filled with the quoted note....
r1466 <% reply_links = authorize_for('issues', 'edit') -%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% for journal in journals %>
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960 <div id="change-<%= journal.id %>" class="journal">
<h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
Jean-Philippe Lang
Avatars added in news (#3941) and forums (#4468) + cleanup....
r3170 <%= avatar(journal.user, :size => "24") %>
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960 <%= content_tag('a', '', :name => "note-#{journal.indice}")%>
Jean-Philippe Lang
Changes issue history headings....
r2092 <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4>
Jean-Philippe Lang
Avatars added in news (#3941) and forums (#4468) + cleanup....
r3170
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960 <ul>
<% for detail in journal.details %>
<li><%= show_detail(detail) %></li>
<% end %>
</ul>
Jean-Philippe Lang
Inlines some code to speed up large ticket history rendering....
r3480 <%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %>
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960 </div>
Eric Davis
Added :view_issues_history_journal_bottom hook...
r2087 <%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>