2014-06-12 09:20:39 +08:00
|
|
|
<%= error_messages_for @news %>
|
|
|
|
<div class="add_frame_header" >
|
2014-08-21 14:46:14 +08:00
|
|
|
<%= is_new ? l(:bale_news_notice):l(:bale_edit_notice)%>
|
2014-06-12 09:20:39 +08:00
|
|
|
</div>
|
|
|
|
<div class="box tabular">
|
2014-08-21 15:40:21 +08:00
|
|
|
<p><%= f.text_field :title, :required => true, :size => 60, :style => "width:468px;", :onblur => "regexTitle();" %></p>
|
|
|
|
<P><span id="title_notice_span">(60个字符以内)</span></P>
|
2014-08-20 15:51:35 +08:00
|
|
|
<!-- <p style="margin-left:-10px;"><%#= f.text_area :summary, :cols => 60, :rows => 2, :style => "width:490px;margin-left:10px;" %></p> -->
|
2014-08-21 15:40:21 +08:00
|
|
|
<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 11, :class => 'wiki-edit', :style => "width:470px;", :onblur => "regexDescription();" %></p>
|
|
|
|
<P><span id="description_notice_span"></span></P>
|
2014-06-12 09:20:39 +08:00
|
|
|
<p id="attachments_form" style="margin-left:-10px;"><label style="padding-right: 15px;"><%= l(:label_attachment_plural) %></label><%= render :partial => 'attachments/form', :locals => {:container => @news} %></p>
|
|
|
|
</div>
|
|
|
|
|
2014-07-10 08:56:52 +08:00
|
|
|
<%= wikitoolbar_for 'news_description'%>
|