To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / versions / _form.rhtml @ 441:cbce1fd3b1b7

History | View | Annotate | Download (727 Bytes)

1
<%= error_messages_for 'version' %>
2

    
3
<div class="box">
4
<p><%= f.text_field :name, :size => 60, :required => true %></p>
5
<p><%= f.text_field :description, :size => 60 %></p>
6
<p><%= f.select :status, Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]} %></p>
7
<p><%= f.text_field :wiki_page_title, :label => :label_wiki_page, :size => 60, :disabled => @project.wiki.nil? %></p>
8
<p><%= f.text_field :effective_date, :size => 10 %><%= calendar_for('version_effective_date') %></p>
9
<p><%= f.select :sharing, @version.allowed_sharings.collect {|v| [format_version_sharing(v), v]} %></p>
10

    
11
<% @version.custom_field_values.each do |value| %>
12
        <p><%= custom_field_tag_with_label :version, value %></p>
13
<% end %>
14

    
15
</div>