replace tabs to spaces at app/views/projects/settings/_repositories.html.erb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8706 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-01-26 12:07:48 +00:00
parent cdbbe8fd42
commit 30579e6619
1 changed files with 11 additions and 11 deletions

View File

@ -1,24 +1,24 @@
<% if @project.repositories.any? %> <% if @project.repositories.any? %>
<table class="list"> <table class="list">
<thead> <thead>
<tr> <tr>
<th><%= l(:label_scm) %></th> <th><%= l(:label_scm) %></th>
<th><%= l(:field_identifier) %></th> <th><%= l(:field_identifier) %></th>
<th><%= l(:field_repository_is_default) %></th> <th><%= l(:field_repository_is_default) %></th>
<th><%= l(:label_repository) %></th> <th><%= l(:label_repository) %></th>
<th></th> <th></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<% @project.repositories.sort.each do |repository| %> <% @project.repositories.sort.each do |repository| %>
<tr class="<%= cycle 'odd', 'even' %>"> <tr class="<%= cycle 'odd', 'even' %>">
<td><%=h repository.scm_name %></td> <td><%=h repository.scm_name %></td>
<td><%=h repository.identifier %></td> <td><%=h repository.identifier %></td>
<td align="center"><%= checked_image repository.is_default? %></td> <td align="center"><%= checked_image repository.is_default? %></td>
<td><%=h repository.url %></td> <td><%=h repository.url %></td>
<td class="buttons"> <td class="buttons">
<% if User.current.allowed_to?(:manage_repository, @project) %> <% if User.current.allowed_to?(:manage_repository, @project) %>
<%= link_to(l(:label_user_plural), committers_repository_path(repository), <%= link_to(l(:label_user_plural), committers_repository_path(repository),
:class => 'icon icon-user') %> :class => 'icon icon-user') %>
<%= link_to(l(:button_edit), edit_repository_path(repository), <%= link_to(l(:button_edit), edit_repository_path(repository),
:class => 'icon icon-edit') %> :class => 'icon icon-edit') %>
@ -26,9 +26,9 @@
:confirm => l(:text_are_you_sure), :confirm => l(:text_are_you_sure),
:method => :delete, :method => :delete,
:class => 'icon icon-del') %> :class => 'icon icon-del') %>
<% end %> <% end %>
</td> </td>
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>
</table> </table>