summaryrefslogtreecommitdiffstats
path: root/app/views/roles/edit.html.erb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-09 18:15:55 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-09 18:15:55 +0000
commit9636882c1e890c7d6dda6b974b9765bebe3f880a (patch)
tree626d15eb8cb6f7cb17fc514abb5ad97293d95efe /app/views/roles/edit.html.erb
parent312ffe43c7efa910d3aa987826e4b8b5f358139e (diff)
downloadredmine-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.erb2
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' %> &#187; <%=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 %>