diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-03-01 12:03:48 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-03-01 12:03:48 +0000 |
commit | 47f5713b1e1cbe636582fd3f59fadc10dd8491a1 (patch) | |
tree | 1445d5a47586270596067bbbf53ff409f6078758 /app/views/enumerations | |
parent | 56bdcf407f898067d5bef188e5df5ad273000e5c (diff) | |
download | redmine-47f5713b1e1cbe636582fd3f59fadc10dd8491a1.tar.gz redmine-47f5713b1e1cbe636582fd3f59fadc10dd8491a1.zip |
Reorder links refactoring (follows r2526).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2546 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/enumerations')
-rw-r--r-- | app/views/enumerations/list.rhtml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/app/views/enumerations/list.rhtml b/app/views/enumerations/list.rhtml index c4a9af27b..485dec71c 100644 --- a/app/views/enumerations/list.rhtml +++ b/app/views/enumerations/list.rhtml @@ -10,12 +10,7 @@ <tr class="<%= cycle('odd', 'even') %>"> <td><%= link_to h(enumeration), :action => 'edit', :id => enumeration %></td> <td style="width:15%;"><%= image_tag('true.png') if enumeration.is_default? %></td> - <td style="width:15%;"> - <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => enumeration, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %> - <%= link_to image_tag('1uparrow.png', :alt => l(:label_sort_higher)), {:action => 'move', :id => enumeration, :position => 'higher'}, :method => :post, :title => l(:label_sort_higher) %> - - <%= link_to image_tag('1downarrow.png', :alt => l(:label_sort_lower)), {:action => 'move', :id => enumeration, :position => 'lower'}, :method => :post, :title => l(:label_sort_lower) %> - <%= link_to image_tag('2downarrow.png', :alt => l(:label_sort_lowest)), {:action => 'move', :id => enumeration, :position => 'lowest'}, :method => :post, :title => l(:label_sort_lowest) %> - </td> + <td style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}) %></td> <td align="center" style="width:10%;"> <%= link_to l(:button_delete), { :action => 'destroy', :id => enumeration }, :method => :post, :confirm => l(:text_are_you_sure), :class => "icon icon-del" %> </td> |