##// END OF EJS Templates
Changed filter position (#17720)....
Changed filter position (#17720). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@16248 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15709:18463cad4d81
r15866:1eee6b3a30df
Show More
_changeset.html.erb
42 lines | 1.3 KiB | text/plain | TextLexer
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 <h2><%= l(:label_revision) %> <%= format_revision(@changeset) %></h2>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757
<div class="details">
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 <h4>
<%= avatar(@changeset.user, :size => "24") %>
<%= authoring(@changeset.committed_on, @changeset.author) %>
</h4>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757 <% if @changeset.scmid.present? || @changeset.parents.present? || @changeset.children.present? %>
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 <ul class="revision-info">
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757 <% if @changeset.scmid.present? %>
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 <li>
<strong>ID </strong><%= @changeset.scmid %>
</li>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757 <% end %>
<% if @changeset.parents.present? %>
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 <li>
<strong><%= l(:label_parent_revision) %></strong>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757 <%= @changeset.parents.collect{
|p| link_to_revision(p, @repository, :text => format_revision(p))
}.join(", ").html_safe %>
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 </li>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757 <% end %>
<% if @changeset.children.present? %>
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 <li>
<strong><%= l(:label_child_revision) %></strong>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757 <%= @changeset.children.collect{
|p| link_to_revision(p, @repository, :text => format_revision(p))
}.join(", ").html_safe %>
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 </li>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757 <% end %>
Jean-Philippe Lang
Show revision details using the same structure and look from the journals details (#23146)....
r15379 </ul>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757 <% end %>
</div>
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 %>
</div>
Jean-Philippe Lang
Adds changeset comments to diff view (#4266)....
r14757
<% if @changeset.issues.visible.any? || User.current.allowed_to?(:manage_related_issues, @repository.project) %>
<%= render :partial => 'related_issues' %>
<% end %>