|
|
|
@ -30,20 +30,25 @@ See doc/COPYRIGHT.rdoc for more details. |
|
|
|
|
<%= labelled_tabular_form_for @content, :as => :content, :url => {:action => 'update', :id => @page}, :html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %> |
|
|
|
|
<%= f.hidden_field :lock_version %> |
|
|
|
|
<%= error_messages_for 'content' %> |
|
|
|
|
<p> |
|
|
|
|
<div class="form--field -required"> |
|
|
|
|
<%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit', :accesskey => accesskey(:edit), |
|
|
|
|
:value => format_text(@content, :text, :attachments => @content.page.attachments, :edit => true), |
|
|
|
|
:'data-wp_autocomplete_url' => work_packages_auto_complete_path(:project_id => @project, :format => :json), |
|
|
|
|
:'ng-non-bindable' => '' %> |
|
|
|
|
</p> |
|
|
|
|
<p> |
|
|
|
|
</div> |
|
|
|
|
<div class="form--field -required"> |
|
|
|
|
<%= f.text_field :comments, :size => 120 %> |
|
|
|
|
</p> |
|
|
|
|
<p><label><%= l(:label_attachment_plural) %></label><br /> |
|
|
|
|
<%= render :partial => 'attachments/form' %></p> |
|
|
|
|
<p><%= submit_tag l(:button_save), class: 'button -highlight' %> |
|
|
|
|
<%= preview_link preview_project_wiki_path(@project, @page), 'wiki_form', class: 'button' %> |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
<div class="form--field"> |
|
|
|
|
<label> |
|
|
|
|
<%= l(:label_attachment_plural) %> |
|
|
|
|
</label> |
|
|
|
|
<%= render :partial => 'attachments/form' %> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<hr> |
|
|
|
|
<%= f.submit l(:button_save), class: 'button -highlight' %> |
|
|
|
|
<%= preview_link preview_project_wiki_path(@project, @page), 'wiki_form', class: 'button' %> |
|
|
|
|
<%= wikitoolbar_for 'content_text' %> |
|
|
|
|
<% end %> |
|
|
|
|
<div id="preview" class="wiki"></div> |
|
|
|
|