You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_new_modal.html.erb 898B

1234567891011121314151617181920212223242526272829
  1. <h3 class="title"><%=l(:label_wiki_page_new)%></h3>
  2. <%= labelled_form_for :page, @page,
  3. :url => new_project_wiki_page_path(@project),
  4. :method => 'post',
  5. :remote => true do |f| %>
  6. <%= render_error_messages @page.errors.full_messages_for(:title) %>
  7. <div class="box tabular">
  8. <p>
  9. <%= f.text_field :title, :name => 'title', :size => 60, :required => true %>
  10. <em class="info"><%= l(:text_unallowed_characters) %>: , . / ? ; : |</em>
  11. </p>
  12. <p>
  13. <% if params[:parent].present? %>
  14. <label class="inline">
  15. <%= check_box_tag 'parent', params[:parent], true %>
  16. <%= l(:field_parent_title) %>: <%= params[:parent] %>
  17. </label>
  18. <% end %>
  19. </p>
  20. </div>
  21. <p class="buttons">
  22. <%= submit_tag l(:label_next), :name => nil %>
  23. <%= link_to_function l(:button_cancel), "hideModal(this);" %>
  24. </p>
  25. <% end %>