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/issue_statuses | |
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/issue_statuses')
-rw-r--r-- | app/views/issue_statuses/list.rhtml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/app/views/issue_statuses/list.rhtml b/app/views/issue_statuses/list.rhtml index e35911813..fd4e3e8b2 100644 --- a/app/views/issue_statuses/list.rhtml +++ b/app/views/issue_statuses/list.rhtml @@ -18,12 +18,7 @@ <td><%= link_to status.name, :action => 'edit', :id => status %></td> <td align="center"><%= image_tag 'true.png' if status.is_default? %></td> <td align="center"><%= image_tag 'true.png' if status.is_closed? %></td> - <td align="center" style="width:15%;"> - <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => status, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %> - <%= link_to image_tag('1uparrow.png', :alt => l(:label_sort_higher)), {:action => 'move', :id => status, :position => 'higher'}, :method => :post, :title => l(:label_sort_higher) %> - - <%= link_to image_tag('1downarrow.png', :alt => l(:label_sort_lower)), {:action => 'move', :id => status, :position => 'lower'}, :method => :post, :title => l(:label_sort_lower) %> - <%= link_to image_tag('2downarrow.png', :alt => l(:label_sort_lowest)), {:action => 'move', :id => status, :position => 'lowest'}, :method => :post, :title => l(:label_sort_lowest) %> - </td> + <td align="center" style="width:15%;"><%= reorder_links('issue_status', {:action => 'update', :id => status}) %></td> <td align="center" style="width:10%;"> <%= button_to l(:button_delete), { :action => 'destroy', :id => status }, :confirm => l(:text_are_you_sure), :class => "button-small" %> </td> |