##// END OF EJS Templates
Refactor: Extract method...
Refactor: Extract method git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3534 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3009:5f8e9d711820
r3420:ca6df3d78d60
Show More
_form.rhtml
15 lines | 727 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'version' %>
Jean-Philippe Lang
date picker...
r27
Jean-Philippe Lang
tables and forms redesign,...
r19 <div class="box">
Jean-Philippe Lang
Allow longer version names (#711, closes #712)....
r1206 <p><%= f.text_field :name, :size => 60, :required => true %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :description, :size => 60 %></p>
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 <p><%= f.select :status, Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]} %></p>
Jean-Philippe Lang
A wiki page can now be attached to each version....
r561 <p><%= f.text_field :wiki_page_title, :label => :label_wiki_page, :size => 60, :disabled => @project.wiki.nil? %></p>
Jean-Philippe Lang
Versions can now be created with no date....
r533 <p><%= f.text_field :effective_date, :size => 10 %><%= calendar_for('version_effective_date') %></p>
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 <p><%= f.select :sharing, @version.allowed_sharings.collect {|v| [format_version_sharing(v), v]} %></p>
Jean-Philippe Lang
Adds custom fields for versions (#4219)....
r2950
<% @version.custom_field_values.each do |value| %>
<p><%= custom_field_tag_with_label :version, value %></p>
<% end %>
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009
Jean-Philippe Lang
calendar javascripts and stylesheets removed from base layout. they're now only added to html header when needed....
r148 </div>