2015-04-03 11:19:15 +08:00
|
|
|
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor" %>
|
2015-03-24 17:12:51 +08:00
|
|
|
|
<li class="ml45">
|
2015-03-24 09:51:42 +08:00
|
|
|
|
<label><span class="c_red">*</span> <%= l(:field_title) %> :</label>
|
2015-03-26 11:02:18 +08:00
|
|
|
|
<input type="text" name="news[title]" class="hwork_input" id="news_title" size="60" onkeyup="regexTitle();" maxlength="60" placeholder="60个字符以内" value="<%= is_new ? '' : @news.title %>">
|
2015-03-27 16:55:23 +08:00
|
|
|
|
<p id="title_notice_span" class="ml55"></p>
|
2015-03-24 09:51:42 +08:00
|
|
|
|
</li>
|
2015-04-03 15:01:26 +08:00
|
|
|
|
<li class="ml45 mb10">
|
2015-04-03 11:19:15 +08:00
|
|
|
|
<% if is_new %>
|
|
|
|
|
<%= hidden_field_tag :asset_id,params[:asset_id],:required => false,:style => 'display:none' %>
|
|
|
|
|
<label class="fl" ><span class="c_red">*</span> <%= l(:field_description) %> :</label>
|
|
|
|
|
<%= f.kindeditor :description,:width=>'91%',:editor_id=>'news_description_editor' %>
|
|
|
|
|
<p id="description_notice_span" class="ml55"></p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<label class="fl" ><span class="c_red">*</span> <%= l(:field_description) %> :</label>
|
|
|
|
|
<%= f.kindeditor :description,:width=>'91%',:editor_id=>'news_description_editor',:owner_id => @news.id,:owner_type => OwnerTypeHelper::NEWS %>
|
|
|
|
|
<p id="description_notice_span" class="ml55"></p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2015-03-24 09:51:42 +08:00
|
|
|
|
</li>
|
|
|
|
|
<div class="cl"></div>
|
2015-03-24 17:12:51 +08:00
|
|
|
|
<li class="ml45">
|
2015-03-27 15:41:28 +08:00
|
|
|
|
<label class="fl"> <%= l(:label_attachment_plural) %> :</label>
|
|
|
|
|
<%= render :partial => 'attachments/new_form', :locals => {:container => @news} %>
|
|
|
|
|
<div class="cl"></div>
|
2015-03-24 17:12:51 +08:00
|
|
|
|
</li>
|
|
|
|
|
<li class=" ml90" >
|
2015-03-26 11:02:18 +08:00
|
|
|
|
<% if is_new %>
|
|
|
|
|
<%= link_to l(:button_create), "#", :onclick => 'submitNews();', :onmouseover => 'submitFocus(this);', :class => 'blue_btn fl c_white' %>
|
|
|
|
|
<%= link_to l(:button_cancel), course_news_index_path(@course), :onclick => '$("#add-news").hide()', :class => 'blue_btn grey_btn fl c_white' %>
|
|
|
|
|
<% else %>
|
2015-04-03 11:19:15 +08:00
|
|
|
|
<%= link_to l(:button_save), "#", :onclick => "submitNews();",:onmouseover => 'this.focus()',:class => 'blue_btn fl c_white' %>
|
2015-03-26 11:02:18 +08:00
|
|
|
|
<%= link_to l(:button_cancel), "#", :onclick => '$("#edit-news").hide(); return false;',:class => 'blue_btn grey_btn fl c_white' %>
|
|
|
|
|
<% end %>
|
2015-03-24 17:12:51 +08:00
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</li>
|
|
|
|
|
<!-- <#%= wikitoolbar_for 'news_description'%>-->
|