##// 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:

r15867:9814dcf231b5
r15869:b40d66f39fa8
Show More
_changesets.html.erb
20 lines | 906 B | text/plain | TextLexer
/ app / views / issues / _changesets.html.erb
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <% changesets.each do |changeset| %>
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <div class="changeset">
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 <p><%= link_to_revision(changeset, changeset.repository,
Jean-Philippe Lang
Adds links to changeset diff on the issue history (#4266)....
r14760 :text => "#{l(:label_revision)} #{changeset.format_identifier}") %>
<% if changeset.filechanges.any? && User.current.allowed_to?(:browse_repository, changeset.project) %>
(<%= link_to(l(:label_diff),
:controller => 'repositories',
:action => 'diff',
:id => changeset.project,
:repository_id => changeset.repository.identifier_param,
:path => "",
:rev => changeset.identifier) %>)
<% end %>
<br />
Jean-Philippe Lang
Maps repository users to Redmine users (#1383)....
r2004 <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
Jean-Philippe Lang
Typo: s/changset-comments/changeset-comments/ (#22758, #24604)....
r15709 <div class="wiki changeset-comments">
Jean-Philippe Lang
Adds a setting to enable/disable formatting of commit messages (#22758)....
r15680 <%= format_changeset_comments changeset %>
Azamat Hackimov
RTL theme for reference (thanks to Orgad Shaneh, #5972)...
r3784 </div>
Jean-Philippe Lang
Slight style changes on issue associated changesets list....
r1098 </div>
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <% end %>