replace tabs to spaces and fix indents at app/views/settings/_repositories.html.erb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11625 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2013-03-15 10:51:24 +00:00
parent 1f4e3af192
commit d78d83f553
1 changed files with 13 additions and 13 deletions

View File

@ -13,29 +13,29 @@
<% scm_class = "Repository::#{choice}".constantize %>
<% text, value = (choice.is_a?(Array) ? choice : [choice, choice]) %>
<% setting = :enabled_scm %>
<% enabled = Setting.send(setting).include?(value) %>
<% enabled = Setting.send(setting).include?(value) %>
<tr>
<td class="scm_name">
<label>
<%= check_box_tag("settings[#{setting}][]", value, enabled, :id => nil) %>
<%= text.to_s %>
<%= check_box_tag("settings[#{setting}][]", value, enabled, :id => nil) %>
<%= text.to_s %>
</label>
</td>
<td>
<% if enabled %>
<%=
image_tag(
<% if enabled %>
<%=
image_tag(
(scm_class.scm_available ? 'true.png' : 'exclamation.png'),
:style => "vertical-align:bottom;"
)
)
%>
<%= scm_class.scm_command %>
<% end %>
</td>
<td>
<%= scm_class.scm_version_string if enabled %>
</td>
</tr>
<% end %>
</td>
<td>
<%= scm_class.scm_version_string if enabled %>
</td>
</tr>
<% end %>
</table>
<p><em class="info"><%= l(:text_scm_config) %></em></p>