summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-07-28 11:53:28 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-07-28 11:53:28 +0000
commit642a892c05604055fb0821939c0aa8736b0353d5 (patch)
tree48b07b17f4bb00c3d14330b5232fadd2c6acf46c /app/views
parentf3241385cd7b74e2d063511b7f8f3893fdfacfd4 (diff)
downloadredmine-642a892c05604055fb0821939c0aa8736b0353d5.tar.gz
redmine-642a892c05604055fb0821939c0aa8736b0353d5.zip
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
Diffstat (limited to 'app/views')
-rw-r--r--app/views/enumerations/index.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/enumerations/index.html.erb b/app/views/enumerations/index.html.erb
index 153c8b5e3..22311f159 100644
--- a/app/views/enumerations/index.html.erb
+++ b/app/views/enumerations/index.html.erb
@@ -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>