diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-09 18:15:55 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-09 18:15:55 +0000 |
commit | 9636882c1e890c7d6dda6b974b9765bebe3f880a (patch) | |
tree | 626d15eb8cb6f7cb17fc514abb5ad97293d95efe /app/views/roles/edit.html.erb | |
parent | 312ffe43c7efa910d3aa987826e4b8b5f358139e (diff) | |
download | redmine-9636882c1e890c7d6dda6b974b9765bebe3f880a.tar.gz redmine-9636882c1e890c7d6dda6b974b9765bebe3f880a.zip |
Use #labelled_form_for instead of #labelled_tabular_form_for.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8141 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/roles/edit.html.erb')
-rw-r--r-- | app/views/roles/edit.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/roles/edit.html.erb b/app/views/roles/edit.html.erb index 64350bbf2..2b1bd793b 100644 --- a/app/views/roles/edit.html.erb +++ b/app/views/roles/edit.html.erb @@ -1,6 +1,6 @@ <h2><%= link_to l(:label_role_plural), :controller => 'roles', :action => 'index' %> » <%=h @role.name %></h2> -<% labelled_tabular_form_for :role, @role, :url => { :action => 'edit' }, :html => {:id => 'role_form'} do |f| %> +<% labelled_form_for :role, @role, :url => { :action => 'edit' }, :html => {:id => 'role_form'} do |f| %> <%= render :partial => 'form', :locals => { :f => f } %> <%= submit_tag l(:button_save) %> <% end %> |