1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

adjust source indents (#20298)

git-svn-id: http://svn.redmine.org/redmine/trunk@14483 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2015-08-12 12:11:12 +00:00
parent df383bf6c5
commit 039c333cec

View File

@ -29,41 +29,41 @@
<h2><%= avatar(@changeset.user, :size => "24") %><%= l(:label_revision) %> <%= format_revision(@changeset) %></h2> <h2><%= avatar(@changeset.user, :size => "24") %><%= l(:label_revision) %> <%= format_revision(@changeset) %></h2>
<div class="details"> <div class="details">
<% if @changeset.scmid.present? || @changeset.parents.present? || @changeset.children.present? %> <% if @changeset.scmid.present? || @changeset.parents.present? || @changeset.children.present? %>
<table class="revision-info"> <table class="revision-info">
<% if @changeset.scmid.present? %> <% if @changeset.scmid.present? %>
<tr> <tr>
<td>ID</td><td><%= @changeset.scmid %></td> <td>ID</td><td><%= @changeset.scmid %></td>
</tr> </tr>
<% end %>
<% if @changeset.parents.present? %>
<tr>
<td><%= l(:label_parent_revision) %></td>
<td>
<%= @changeset.parents.collect{
|p| link_to_revision(p, @repository, :text => format_revision(p))
}.join(", ").html_safe %>
</td>
</tr>
<% end %>
<% if @changeset.children.present? %>
<tr>
<td><%= l(:label_child_revision) %></td>
<td>
<%= @changeset.children.collect{
|p| link_to_revision(p, @repository, :text => format_revision(p))
}.join(", ").html_safe %>
</td>
</tr>
<% end %>
</table>
<% end %> <% end %>
<% if @changeset.parents.present? %>
<tr>
<td><%= l(:label_parent_revision) %></td>
<td>
<%= @changeset.parents.collect{
|p| link_to_revision(p, @repository, :text => format_revision(p))
}.join(", ").html_safe %>
</td>
</tr>
<% end %>
<% if @changeset.children.present? %>
<tr>
<td><%= l(:label_child_revision) %></td>
<td>
<%= @changeset.children.collect{
|p| link_to_revision(p, @repository, :text => format_revision(p))
}.join(", ").html_safe %>
</td>
</tr>
<% end %>
</table>
<% end %>
<p> <p>
<span class="author"> <span class="author">
<%= authoring(@changeset.committed_on, @changeset.author) %> <%= authoring(@changeset.committed_on, @changeset.author) %>
</span> </span>
</p> </p>
</div> </div>
<%= textilizable @changeset.comments %> <%= textilizable @changeset.comments %>