7 lines
362 B
Plaintext
7 lines
362 B
Plaintext
<%= javascript_include_tag src='/assets/kindeditor/kindeditor' %>
|
|
<h1>新建文章</h1>
|
|
<%= form_for @discuss_demo,:url => {:controller => 'discuss_demos',:action => "show",:id =>@discuss_demo.id, :method => :put} do |f| %>
|
|
<%= f.text_field :title %>
|
|
<%= f.kindeditor :body ,:owner_id => @discuss_demo.id%>
|
|
<%= f.submit :value=> '提交' %>
|
|
<% end %> |