diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-18 02:02:01 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-18 02:02:01 +0000 |
commit | 887a4cc80d0c2fdc9852aa9d64eea846c061721d (patch) | |
tree | 1d576f1dd1da0c0fa1eea796223a2d8f9428cd40 /app | |
parent | a80507178b16b778df3856b492498524d43ea83b (diff) | |
download | redmine-887a4cc80d0c2fdc9852aa9d64eea846c061721d.tar.gz redmine-887a4cc80d0c2fdc9852aa9d64eea846c061721d.zip |
replace tabs to spaces at app/views/projects/settings/_boards.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7382 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/settings/_boards.html.erb | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/app/views/projects/settings/_boards.html.erb b/app/views/projects/settings/_boards.html.erb index b2d5d54a1..ee3ac8998 100644 --- a/app/views/projects/settings/_boards.html.erb +++ b/app/views/projects/settings/_boards.html.erb @@ -1,29 +1,29 @@ <% if @project.boards.any? %> <table class="list"> - <thead><tr> - <th><%= l(:label_board) %></th> - <th><%= l(:field_description) %></th> - <th></th> - <th></th> - </tr></thead> - <tbody> + <thead><tr> + <th><%= l(:label_board) %></th> + <th><%= l(:field_description) %></th> + <th></th> + <th></th> + </tr></thead> + <tbody> <% @project.boards.each do |board| - next if board.new_record? %> - <tr class="<%= cycle 'odd', 'even' %>"> + next if board.new_record? %> + <tr class="<%= cycle 'odd', 'even' %>"> <td><%=h board.name %></td> <td><%=h board.description %></td> <td align="center"> <% if authorize_for("boards", "edit") %> - <%= reorder_links('board', {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}) %> + <%= reorder_links('board', {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}) %> <% end %> </td> <td class="buttons"> - <%= link_to_if_authorized l(:button_edit), {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}, :class => 'icon icon-edit' %> - <%= link_to_if_authorized l(:button_delete), {:controller => 'boards', :action => 'destroy', :project_id => @project, :id => board}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> + <%= link_to_if_authorized l(:button_edit), {:controller => 'boards', :action => 'edit', :project_id => @project, :id => board}, :class => 'icon icon-edit' %> + <%= link_to_if_authorized l(:button_delete), {:controller => 'boards', :action => 'destroy', :project_id => @project, :id => board}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %> </td> - </tr> + </tr> <% end %> - </tbody> + </tbody> </table> <% else %> <p class="nodata"><%= l(:label_no_data) %></p> |