##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15241:82158fb72432
r15869:b40d66f39fa8
Show More
_history.html.erb
30 lines | 1.3 KiB | text/plain | TextLexer
/ app / views / issues / _history.html.erb
Jean-Philippe Lang
Adds permission to edit and delete issues by role/tracker (#285)....
r15084 <% reply_links = issue.notes_addable? -%>
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
html5 compliance....
r9926 <div id="note-<%= journal.indice %>">
Jean-Philippe Lang
Link to the anchor only....
r13558 <h4><a href="#note-<%= journal.indice %>" class="journal-link">#<%= journal.indice %></a>
Jean-Philippe Lang
Avatars added in news (#3941) and forums (#4468) + cleanup....
r3170 <%= avatar(journal.user, :size => "24") %>
Jean-Baptiste Barth
Mark private notes more clearly (#16240)....
r13013 <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %>
Jean-Philippe Lang
Renames #render_private_notes to #render_private_notes_indicator (#22575)....
r15241 <%= render_private_notes_indicator(journal) %></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
Role-based issue custom field visibility (#5037)....
r11782 <% details_to_strings(journal.visible_details).each do |string| %>
Jean-Philippe Lang
Adds support for multiselect custom fields (#1189)....
r8601 <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
Thumbnails in issue history (#13429)....
r14349 <% if Setting.thumbnails_enabled? && (thumbnail_attachments = journal_thumbnail_attachments(journal)).any? %>
<div class="thumbnails">
<% thumbnail_attachments.each do |attachment| %>
<div><%= thumbnail_tag(attachment) %></div>
<% end %>
</div>
<% end %>
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? %>
Jean-Philippe Lang
html5 compliance....
r9926 </div>
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) %>