##// END OF EJS Templates
Reverted r9368....
Reverted r9368. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9370 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8601:cd6db6a3cbe4
r9236:d427d8e5675c
Show More
_history.html.erb
21 lines | 1023 B | text/plain | TextLexer
/ app / views / issues / _history.html.erb
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
Refactor: move method to model. (references r4057)...
r3948 <div id="change-<%= journal.id %>" class="<%= journal.css_classes %>">
Jean-Philippe Lang
Removed invalid div....
r8445 <h4><%= link_to "##{journal.indice}", {:anchor => "note-#{journal.indice}"}, :class => "journal-link" %>
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}")%>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_history.html.erb...
r7228 <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_history.html.erb...
r7181
Jean-Philippe Lang
Fixed: empty ul tag for issue updates with notes only (#5281)....
r3552 <% if journal.details.any? %>
<ul class="details">
Jean-Philippe Lang
Adds support for multiselect custom fields (#1189)....
r8601 <% details_to_strings(journal.details).each do |string| %>
<li><%= string %></li>
Jean-Philippe Lang
Fixed: empty ul tag for issue updates with notes only (#5281)....
r3552 <% end %>
Eric Davis
Gravatar support for issue detai, user grid, and activity stream...
r1960 </ul>
Jean-Philippe Lang
Fixed: empty ul tag for issue updates with notes only (#5281)....
r3552 <% end %>
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 %>
Jean-Philippe Lang
Adds wiki toolbar to notes editing form (#7899)....
r5120
<% heads_for_wiki_formatter if User.current.allowed_to?(:edit_issue_notes, issue.project) || User.current.allowed_to?(:edit_own_issue_notes, issue.project) %>