diff --git a/app/views/enumerations/index.html.erb b/app/views/enumerations/index.html.erb
index 153c8b5..22311f1 100644
--- a/app/views/enumerations/index.html.erb
+++ b/app/views/enumerations/index.html.erb
@@ -10,7 +10,7 @@
<%= l(:field_name) %> |
<%= l(:field_is_default) %> |
<%= l(:field_active) %> |
- |
+ <%=l(:button_sort)%> |
|
<% enumerations.each do |enumeration| %>
@@ -18,7 +18,7 @@
<%= link_to h(enumeration), edit_enumeration_path(enumeration) %> |
<%= checked_image enumeration.is_default? %> |
<%= checked_image enumeration.active? %> |
- <%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %> |
+ <%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %> |
<%= delete_link enumeration_path(enumeration) %>
|