mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-26 02:11:15 +00:00
git-svn-id: http://svn.redmine.org/redmine/trunk@16775 e93f8b46-1217-0410-a6f0-8f06a7374b81
22 lines
729 B
Plaintext
22 lines
729 B
Plaintext
<h3 class="title"><%=l(:label_wiki_page_new)%></h3>
|
|
|
|
<%= labelled_form_for :page, @page,
|
|
:url => new_project_wiki_page_path(@project, :parent => params[:parent]),
|
|
:method => 'post',
|
|
:remote => true 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>
|
|
|
|
<p class="buttons">
|
|
<%= submit_tag l(:label_next), :name => nil %>
|
|
<%= submit_tag l(:button_cancel), :name => nil, :onclick => "hideModal(this);", :type => 'button' %>
|
|
</p>
|
|
<% end %>
|