_changesets.html.erb
20 lines
| 914 B
| text/plain
|
TextLexer
|
r1071 | <% changesets.each do |changeset| %> | ||
|
r1098 | <div class="changeset <%= cycle('odd', 'even') %>"> | ||
|
r8530 | <p><%= link_to_revision(changeset, changeset.repository, | ||
|
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 /> | ||||
|
r2004 | <span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p> | ||
|
r5180 | <div class="wiki"> | ||
|
r3784 | <%= textilizable(changeset, :comments) %> | ||
</div> | ||||
|
r1098 | </div> | ||
|
r1071 | <% end %> | ||