replace tabs to spaces at app/views/projects/settings/_issue_categories.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7383 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
887a4cc80d
commit
497887e121
@ -1,22 +1,22 @@
|
|||||||
<% if @project.issue_categories.any? %>
|
<% if @project.issue_categories.any? %>
|
||||||
<table class="list">
|
<table class="list">
|
||||||
<thead><tr>
|
<thead><tr>
|
||||||
<th><%= l(:label_issue_category) %></th>
|
<th><%= l(:label_issue_category) %></th>
|
||||||
<th><%= l(:field_assigned_to) %></th>
|
<th><%= l(:field_assigned_to) %></th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr></thead>
|
</tr></thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% for category in @project.issue_categories %>
|
<% for category in @project.issue_categories %>
|
||||||
<% unless category.new_record? %>
|
<% unless category.new_record? %>
|
||||||
<tr class="<%= cycle 'odd', 'even' %>">
|
<tr class="<%= cycle 'odd', 'even' %>">
|
||||||
<td><%=h(category.name) %></td>
|
<td><%=h(category.name) %></td>
|
||||||
<td><%=h(category.assigned_to.name) if category.assigned_to %></td>
|
<td><%=h(category.assigned_to.name) if category.assigned_to %></td>
|
||||||
<td class="buttons">
|
<td class="buttons">
|
||||||
<%= link_to_if_authorized l(:button_edit), { :controller => 'issue_categories', :action => 'edit', :id => category }, :class => 'icon icon-edit' %>
|
<%= link_to_if_authorized l(:button_edit), { :controller => 'issue_categories', :action => 'edit', :id => category }, :class => 'icon icon-edit' %>
|
||||||
<%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => category}, :method => :post, :class => 'icon icon-del' %>
|
<%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => category}, :method => :post, :class => 'icon icon-del' %>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user