##// END OF EJS Templates
Always show 'View' and 'Annotate' links on repository files (download will be forced when clicking 'View' if the file is binary)....
Always show 'View' and 'Annotate' links on repository files (download will be forced when clicking 'View' if the file is binary). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1274 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1098:c3d909e0cc11
r1259:f162337e1b36
Show More
_changesets.rhtml
8 lines | 452 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _changesets.rhtml
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <% changesets.each do |changeset| %>
Jean-Philippe Lang
Slight style changes on issue associated changesets list....
r1098 <div class="changeset <%= cycle('odd', 'even') %>">
<p><%= link_to("#{l(:label_revision)} #{changeset.revision}",
:controller => 'repositories', :action => 'revision', :id => @project, :rev => changeset.revision) %><br />
<span class="author"><%= authoring(changeset.committed_on, changeset.committer) %></span></p>
<%= textilizable(changeset, :comments) %>
</div>
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <% end %>