]> source.dussan.org Git - redmine.git/commitdiff
Missing Sort Column Label and Center Align on Admin-Enumerations (#14516).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 28 Jul 2013 11:53:28 +0000 (11:53 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 28 Jul 2013 11:53:28 +0000 (11:53 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12051 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/enumerations/index.html.erb

index 153c8b5e37f48282974f034d7b2311175aa3ab84..22311f1591ac875fed4eeadcbd9e4d5da1d4750d 100644 (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>