|
|
|
@ -37,26 +37,37 @@ See doc/COPYRIGHT.rdoc for more details. |
|
|
|
|
<%= error_messages_for 'version' %> |
|
|
|
|
<%= back_url_hidden_field_tag %> |
|
|
|
|
|
|
|
|
|
<div class="box"> |
|
|
|
|
<% if @version.project == @project %> |
|
|
|
|
|
|
|
|
|
<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 :start_date, :size => 10 %><%= calendar_for('version_start_date') %></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> |
|
|
|
|
|
|
|
|
|
<div class="form--field"> |
|
|
|
|
<%= f.text_field :name, required: true %> |
|
|
|
|
</div> |
|
|
|
|
<div class="form--field"> |
|
|
|
|
<%= f.text_field :description %> |
|
|
|
|
</div> |
|
|
|
|
<div class="form--field"> |
|
|
|
|
<%= f.select :status, Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]} %> |
|
|
|
|
</div> |
|
|
|
|
<div class="form--field"> |
|
|
|
|
<%= f.text_field :wiki_page_title, label: :label_wiki_page, disabled: @project.wiki.nil? %> |
|
|
|
|
</div> |
|
|
|
|
<div class="form--field"> |
|
|
|
|
<%= f.text_field :start_date %><%= calendar_for('version_start_date') %> |
|
|
|
|
</div> |
|
|
|
|
<div class="form--field"> |
|
|
|
|
<%= f.text_field :effective_date %><%= calendar_for('version_effective_date') %> |
|
|
|
|
</div> |
|
|
|
|
<div class="form--field"> |
|
|
|
|
<%= f.select :sharing, @version.allowed_sharings.collect {|v| [format_version_sharing(v), v]} %> |
|
|
|
|
</div> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|
<% if @project.enabled_modules.collect(&:name).include?("backlogs") %> |
|
|
|
|
<%= version_settings_fields @version, @project %> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|
<% if @version.project == @project %> |
|
|
|
|
<% @version.custom_field_values.each do |value| %> |
|
|
|
|
<p><%= custom_field_tag_with_label :version, value %></p> |
|
|
|
|
<% end %> |
|
|
|
|
<% @version.custom_field_values.each do |value| %> |
|
|
|
|
<div class="form--field"><%= custom_field_tag_with_label :version, value %></div> |
|
|
|
|
<% end %> |
|
|
|
|
<% end %> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|