##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9852:705f96ccde44
r15869:b40d66f39fa8
Show More
_new_modal.html.erb
9 lines | 414 B | text/plain | TextLexer
/ app / views / versions / _new_modal.html.erb
Jean-Philippe Lang
Displays the full form when creating a version from the issue form so that required custom fields can be filled (#7398)....
r8725 <h3 class="title"><%=l(:label_version_new)%></h3>
Jean-Philippe Lang
Removes calls to remote_form_for....
r9852 <%= labelled_form_for @version, :url => project_versions_path(@project), :remote => true do |f| %>
Jean-Philippe Lang
Displays the full form when creating a version from the issue form so that required custom fields can be filled (#7398)....
r8725 <%= render :partial => 'versions/form', :locals => { :f => f } %>
<p class="buttons">
<%= submit_tag l(:button_create), :name => nil %>
<%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button' %>
</p>
<% end %>