edit.html.erb
47 lines
| 1.8 KiB
| text/plain
|
TextLexer
|
r6062 | <%= wiki_page_breadcrumb(@page) %> | ||
|
r2584 | <h2><%=h @page.pretty_title %></h2> | ||
|
r330 | |||
|
r4189 | <% form_for :content, @content, :url => {:action => 'update', :id => @page.title}, :html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %> | ||
|
r542 | <%= f.hidden_field :version %> | ||
|
r7709 | <% if @section %> | ||
<%= hidden_field_tag 'section', @section %> | ||||
<%= hidden_field_tag 'section_hash', @section_hash %> | ||||
<% end %> | ||||
|
r330 | <%= error_messages_for 'content' %> | ||
|
r1176 | |||
|
r8133 | <div class="box tabular"> | ||
<%= text_area_tag 'content[text]', @text, :cols => 100, :rows => 25, :class => 'wiki-edit', :accesskey => accesskey(:edit) %> | ||||
|
r8667 | <% if @page.safe_attribute_names.include?('parent_id') && @wiki.pages.any? %> | ||
<% fields_for @page do |fp| %> | ||||
<p> | ||||
<label><%= l(:field_parent_title) %></label> | ||||
<%= fp.select :parent_id, "<option value=''></option>" + wiki_page_options_for_select(@wiki.pages.all(:include => :parent) - @page.self_and_descendants, @page.parent) %> | ||||
</p> | ||||
<% end %> | ||||
|
r8135 | <% end %> | ||
|
r8133 | <p><label><%= l(:field_comments) %></label><%= f.text_field :comments, :size => 120 %></p> | ||
<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p> | ||||
</div> | ||||
|
r3386 | |||
|
r330 | <p><%= submit_tag l(:button_save) %> | ||
|
r7097 | <%= link_to_remote l(:label_preview), | ||
|
r4182 | { :url => { :controller => 'wiki', :action => 'preview', :project_id => @project, :id => @page.title }, | ||
|
r4189 | :method => :post, | ||
|
r330 | :update => 'preview', | ||
|
r701 | :with => "Form.serialize('wiki_form')", | ||
|
r1122 | :complete => "Element.scrollTo('preview')" | ||
|
r793 | }, :accesskey => accesskey(:preview) %></p> | ||
|
r652 | <%= wikitoolbar_for 'content_text' %> | ||
|
r330 | <% end %> | ||
|
r652 | <div id="preview" class="wiki"></div> | ||
|
r699 | |||
<% content_for :header_tags do %> | ||||
<%= stylesheet_link_tag 'scm' %> | ||||
|
r5323 | <%= robot_exclusion_tag %> | ||
|
r699 | <% end %> | ||
|
r704 | |||
|
r7445 | <% html_title @page.pretty_title %> | ||