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/projects/copy.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/projects/copy.html.erb')
-rw-r--r-- | app/views/projects/copy.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/copy.html.erb b/app/views/projects/copy.html.erb index 1ea4d43cd..66f6d3353 100644 --- a/app/views/projects/copy.html.erb +++ b/app/views/projects/copy.html.erb @@ -1,9 +1,9 @@ <h2><%=l(:label_project_new)%></h2> -<% labelled_tabular_form_for @project, :url => { :action => "copy" } do |f| %> +<% labelled_form_for @project, :url => { :action => "copy" } do |f| %> <%= render :partial => 'form', :locals => { :f => f } %> -<fieldset class="box"><legend><%= l(:button_copy) %></legend> +<fieldset class="box tabular"><legend><%= l(:button_copy) %></legend> <label class="block"><%= check_box_tag 'only[]', 'members', true %> <%= l(:label_member_plural) %> (<%= @source_project.members.count %>)</label> <label class="block"><%= check_box_tag 'only[]', 'versions', true %> <%= l(:label_version_plural) %> (<%= @source_project.versions.count %>)</label> <label class="block"><%= check_box_tag 'only[]', 'issue_categories', true %> <%= l(:label_issue_category_plural) %> (<%= @source_project.issue_categories.count %>)</label> |