69 lines
2.7 KiB
Plaintext
69 lines
2.7 KiB
Plaintext
<%= wiki_page_breadcrumb(@page) %>
|
|
|
|
<script src="http://<%= Setting.host_name%>/javascripts/ckeditor/ckeditor.js?1404953555" type="text/javascript"></script>
|
|
<div class="project_r_h">
|
|
<h2 class="project_h2">Wiki</h2>
|
|
</div>
|
|
<!--<h3 style="word-break: break-all;word-wrap: break-word;">-->
|
|
<!--<%#= h @page.pretty_title %>-->
|
|
<!--</h3>-->
|
|
|
|
<%= form_for @content, :as => :content,
|
|
:url => {:action => 'update', :id => @page.title},
|
|
:html => {:method => :put, :multipart => true, :id => 'wiki_form'} do |f| %>
|
|
<%= f.hidden_field :version %>
|
|
<% if @section %>
|
|
<%= hidden_field_tag 'section', @section %>
|
|
<%= hidden_field_tag 'section_hash', @section_hash %>
|
|
<% end %>
|
|
<%= error_messages_for 'content' %>
|
|
|
|
|
|
|
|
<div class="wiki_new">
|
|
<div class="actions" style="max-width:680px">
|
|
<p style="max-width:680px;">
|
|
<%=text_area_tag 'content[text]', @text, :required => true, :id => 'editor02', :cols => 100, :rows => 25 %>
|
|
</p>
|
|
<script type="text/javascript">
|
|
var ckeditor=CKEDITOR.replace('editor02',{height: '300'});
|
|
</script>
|
|
</div>
|
|
|
|
<div class="box tabular" style="padding-top: 10px;">
|
|
<!--上一页-->
|
|
<%# 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,content_tag('option', '', :value => '') + wiki_page_options_for_select(@wiki.pages.all(:include => :parent) - @page.self_and_descendants, @page.parent) %>-->
|
|
<!--</p>-->
|
|
<%# end %>
|
|
<%# end %>
|
|
<ul class="wiki_new_ul">
|
|
<li><label class="label"> <%= l(:field_comments) %> : </label>
|
|
<%= f.text_field :comments, :class => "w557" %>
|
|
</li>
|
|
<div class="cl"></div>
|
|
<li><label class="label" > <%=l(:label_attachment_plural)%> : </label>
|
|
<%= render :partial => 'attachments/form',:locals => {:container => @page} %>
|
|
|
|
</li>
|
|
<div class="cl"></div>
|
|
</ul>
|
|
<a remote="true" href="javascript:void(0)" class="blue_btn" onclick="$('#wiki_form').submit();">
|
|
<%= l(:button_save) %>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<%= wikitoolbar_for 'content_text' %>
|
|
<% end %>
|
|
<div id="preview" class="wiki"></div>
|
|
<% content_for :header_tags do %>
|
|
<%= robot_exclusion_tag %>
|
|
<% end %>
|
|
<% html_title @page.pretty_title %>
|