##// 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:

r14964:bda78a4679bc
r15869:b40d66f39fa8
Show More
new.html.erb
17 lines | 478 B | text/plain | TextLexer
<%= title l(:label_wiki_page_new) %>
<%= labelled_form_for :page, @page,
:url => new_project_wiki_page_path(@project) do |f| %>
<%= render_error_messages @page.errors.full_messages_for(:title) %>
<div class="box tabular">
<p>
<%= f.text_field :title, :name => 'title', :size => 60, :required => true %>
<em class="info"><%= l(:text_unallowed_characters) %>: , . / ? ; : |</em>
</p>
</div>
<%= submit_tag(l(:label_next)) %>
<% end %>