5f8e9d7118
Each version of a project can be shared with: * subprojects * projects in the project hierarchy: ancestors + descendants (needs versions management permission on the root project) * projects in the project tree: root project + all its descendants (same as above) * all projects (can be set by admin users only) Notes: * when sharing a version of a private project with others projects, its name will be visible within the other projects * a project with versions used by non descendant projects can not be archived git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3123 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 lines
727 B
Plaintext
16 lines
727 B
Plaintext
<%= error_messages_for 'version' %>
|
|
|
|
<div class="box">
|
|
<p><%= f.text_field :name, :size => 60, :required => true %></p>
|
|
<p><%= f.text_field :description, :size => 60 %></p>
|
|
<p><%= f.select :status, Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]} %></p>
|
|
<p><%= f.text_field :wiki_page_title, :label => :label_wiki_page, :size => 60, :disabled => @project.wiki.nil? %></p>
|
|
<p><%= f.text_field :effective_date, :size => 10 %><%= calendar_for('version_effective_date') %></p>
|
|
<p><%= f.select :sharing, @version.allowed_sharings.collect {|v| [format_version_sharing(v), v]} %></p>
|
|
|
|
<% @version.custom_field_values.each do |value| %>
|
|
<p><%= custom_field_tag_with_label :version, value %></p>
|
|
<% end %>
|
|
|
|
</div>
|