2009-05-10 15:33:02 +04:00
|
|
|
<h2><%=l(:label_project_new)%></h2>
|
2009-05-04 01:25:37 +04:00
|
|
|
|
|
|
|
<% 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 %>
|