summaryrefslogtreecommitdiffstats
path: root/app/views/projects/copy.rhtml
blob: ac531e0697c1b41fa1350cc45e402a65ba975ba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<h2><%=l(:label_project_new)%></h2>

<% labelled_tabular_form_for :project, @project, :url => { :action => "copy" } do |f| %>
<%= render :partial => 'form', :locals => { :f => f } %>

<fieldset class="box"><legend><%= l(:label_module_plural) %></legend>
<% Redmine::AccessControl.available_project_modules.each do |m| %>
    <label class="floating">
    <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %>
    <%= l_or_humanize(m, :prefix => "project_module_") %>
    </label>
<% end %>
</fieldset>

<%= submit_tag l(:button_copy) %>
<% end %>