summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-01-26 12:07:48 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-01-26 12:07:48 +0000
commit30579e6619e8723a530e510cd85c0dfbc4c332cf (patch)
treee731311cd5fe2800e8c72df7079c479ea92bb488 /app/views/projects
parentcdbbe8fd42758a030af35fbd404e32567b53f502 (diff)
downloadredmine-30579e6619e8723a530e510cd85c0dfbc4c332cf.tar.gz
redmine-30579e6619e8723a530e510cd85c0dfbc4c332cf.zip
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
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/settings/_repositories.html.erb22
1 files changed, 11 insertions, 11 deletions
diff --git a/app/views/projects/settings/_repositories.html.erb b/app/views/projects/settings/_repositories.html.erb
index cf150f11a..c2581b38c 100644
--- a/app/views/projects/settings/_repositories.html.erb
+++ b/app/views/projects/settings/_repositories.html.erb
@@ -1,24 +1,24 @@
<% if @project.repositories.any? %>
<table class="list">
<thead>
- <tr>
+ <tr>
<th><%= l(:label_scm) %></th>
<th><%= l(:field_identifier) %></th>
<th><%= l(:field_repository_is_default) %></th>
<th><%= l(:label_repository) %></th>
<th></th>
</tr>
- </thead>
+ </thead>
<tbody>
<% @project.repositories.sort.each do |repository| %>
- <tr class="<%= cycle 'odd', 'even' %>">
- <td><%=h repository.scm_name %></td>
+ <tr class="<%= cycle 'odd', 'even' %>">
+ <td><%=h repository.scm_name %></td>
<td><%=h repository.identifier %></td>
<td align="center"><%= checked_image repository.is_default? %></td>
- <td><%=h repository.url %></td>
- <td class="buttons">
- <% if User.current.allowed_to?(:manage_repository, @project) %>
- <%= link_to(l(:label_user_plural), committers_repository_path(repository),
+ <td><%=h repository.url %></td>
+ <td class="buttons">
+ <% if User.current.allowed_to?(:manage_repository, @project) %>
+ <%= link_to(l(:label_user_plural), committers_repository_path(repository),
:class => 'icon icon-user') %>
<%= link_to(l(:button_edit), edit_repository_path(repository),
:class => 'icon icon-edit') %>
@@ -26,9 +26,9 @@
:confirm => l(:text_are_you_sure),
:method => :delete,
:class => 'icon icon-del') %>
- <% end %>
- </td>
- </tr>
+ <% end %>
+ </td>
+ </tr>
<% end %>
</tbody>
</table>