Redmine 4.1.1
This commit is contained in:
parent
33e7b881a5
commit
3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions
24
app/views/issues/tabs/_changesets.html.erb
Normal file
24
app/views/issues/tabs/_changesets.html.erb
Normal file
|
@ -0,0 +1,24 @@
|
|||
<% @changesets.each do |changeset| %>
|
||||
<div id="changeset-<%= changeset.id %>" class="changeset journal">
|
||||
<h4>
|
||||
<%= avatar(changeset.user, :size => "24") %>
|
||||
<%= authoring changeset.committed_on, changeset.author, :label => :label_added_time_by %>
|
||||
</h4>
|
||||
<p><%= link_to_revision(changeset, changeset.repository,
|
||||
: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 %></p>
|
||||
|
||||
<div class="wiki changeset-comments">
|
||||
<%= format_changeset_comments changeset %>
|
||||
</div>
|
||||
</div>
|
||||
<%= call_hook(:view_issues_history_changeset_bottom, { :changeset => changeset }) %>
|
||||
<% end %>
|
Loading…
Add table
Add a link
Reference in a new issue