##// END OF EJS Templates
Override @#url_for@ in AM to force generation of absolute links (#10251)....
Override @#url_for@ in AM to force generation of absolute links (#10251). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9022 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8021:9636882c1e89
r8902:7056649a4be9
Show More
copy.html.erb
20 lines | 1.5 KiB | text/plain | TextLexer
Jean-Philippe Lang
Removes untranslated string....
r2631 <h2><%=l(:label_project_new)%></h2>
Eric Davis
Added the ability to copy a project in the Project Administration panel....
r2608
Jean-Philippe Lang
Use #labelled_form_for instead of #labelled_tabular_form_for....
r8021 <% labelled_form_for @project, :url => { :action => "copy" } do |f| %>
Eric Davis
Added the ability to copy a project in the Project Administration panel....
r2608 <%= render :partial => 'form', :locals => { :f => f } %>
Jean-Philippe Lang
Use #labelled_form_for instead of #labelled_tabular_form_for....
r8021 <fieldset class="box tabular"><legend><%= l(:button_copy) %></legend>
Jean-Philippe Lang
Display stats about objects that can be copied....
r2861 <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>
<label class="block"><%= check_box_tag 'only[]', 'issues', true %> <%= l(:label_issue_plural) %> (<%= @source_project.issues.count %>)</label>
<label class="block"><%= check_box_tag 'only[]', 'queries', true %> <%= l(:label_query_plural) %> (<%= @source_project.queries.count %>)</label>
Jean-Philippe Lang
Allow project forums copy....
r2862 <label class="block"><%= check_box_tag 'only[]', 'boards', true %> <%= l(:label_board_plural) %> (<%= @source_project.boards.count %>)</label>
Jean-Philippe Lang
Display stats about objects that can be copied....
r2861 <label class="block"><%= check_box_tag 'only[]', 'wiki', true %> <%= l(:label_wiki_page_plural) %> (<%= @source_project.wiki.nil? ? 0 : @source_project.wiki.pages.count %>)</label>
Jean-Philippe Lang
Project copy: let the user choose what to copy from the source project (everything by default)....
r2852 <%= hidden_field_tag 'only[]', '' %>
Jean-Philippe Lang
Adds an option to enable/disable email notifications during a project copy (#4672)....
r3494 <br />
Toshi MARUYAMA
replace tabs to spaces at app/views/projects/copy.html.erb...
r7249 <label class="block"><%= check_box_tag 'notifications', 1, params[:notifications] %> <%= l(:label_project_copy_notifications) %></label>
Jean-Philippe Lang
Project copy: let the user choose what to copy from the source project (everything by default)....
r2852 </fieldset>
Eric Davis
Added the ability to copy a project in the Project Administration panel....
r2608 <%= submit_tag l(:button_copy) %>
<% end %>