Missing Sort Column Label and Center Align on Admin-Enumerations (#14516).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12051 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2013-07-28 11:53:28 +00:00
parent f3241385cd
commit 642a892c05
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<th><%= l(:field_name) %></th>
<th style="width:15%;"><%= l(:field_is_default) %></th>
<th style="width:15%;"><%= l(:field_active) %></th>
<th style="width:15%;"></th>
<th style="width:15%;"><%=l(:button_sort)%></th>
<th align="center" style="width:10%;"> </th>
</tr></thead>
<% enumerations.each do |enumeration| %>
@ -18,7 +18,7 @@
<td><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td>
<td class="center" style="width:15%;"><%= checked_image enumeration.is_default? %></td>
<td class="center" style="width:15%;"><%= checked_image enumeration.active? %></td>
<td style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td>
<td align="center" style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td>
<td class="buttons">
<%= delete_link enumeration_path(enumeration) %>
</td>