From 451ec230601ef1ef07932bdafe2622d3eb5277b6 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 26 Dec 2006 11:42:37 +0000 Subject: [PATCH] replaced some submit buttons by links on projects/settings git-svn-id: http://redmine.rubyforge.org/svn/trunk@119 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/projects/settings.rhtml | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/app/views/projects/settings.rhtml b/app/views/projects/settings.rhtml index 3f9cba0a..6c2e53cd 100644 --- a/app/views/projects/settings.rhtml +++ b/app/views/projects/settings.rhtml @@ -27,11 +27,7 @@ <% end %> - <% if authorize_for('members', 'destroy') %> - <%= start_form_tag :controller => 'members', :action => 'destroy', :id => member %> - <%= submit_tag l(:button_delete), :class => "button-small" %> - <%= end_form_tag %> - <% end %> + <%= link_to_if_authorized l(:button_delete), {:controller => 'members', :action => 'destroy', :id => member}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %> <% end %> @@ -60,14 +56,9 @@ <%=h version.name %> <%= format_date(version.effective_date) %> <%=h version.description %> -     - <%= link_to_if_authorized l(:button_edit), :controller => 'versions', :action => 'edit', :id => version %> - <% if authorize_for('versions', 'destroy') %> -   - <%= start_form_tag :controller => 'versions', :action => 'destroy', :id => version %> - <%= submit_tag l(:button_delete), :class => "button-small" %> - <%= end_form_tag %> - <% end %> + + <%= link_to_if_authorized l(:button_edit), { :controller => 'versions', :action => 'edit', :id => version }, :class => 'pic picEdit' %> + <%= link_to_if_authorized l(:button_delete), {:controller => 'versions', :action => 'destroy', :id => version}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %> <% end %> @@ -96,11 +87,7 @@ <% end %> - <% if authorize_for('issue_categories', 'destroy') %> - <%= start_form_tag :controller => 'issue_categories', :action => 'destroy', :id => @category %> - <%= submit_tag l(:button_delete), :class => "button-small" %> - <%= end_form_tag %> - <% end %> + <%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => @category}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %> <% end %>