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>
|
|
|
|
|
<li class="ml45">
|
|
|
|
|
<label class="fl" ><span class="c_red">*</span> <%= l(:field_description) %> :</label>
|
2015-03-27 15:41:28 +08:00
|
|
|
|
<textarea id="news_description" name="news[description]" placeholder="最多3000个汉字(或6000个英文字符)" class="hwork_text fl" onkeyup="regexDescription();" maxlength="6000"><%= is_new ? '' : @news.description %></textarea>
|
2015-03-27 16:55:23 +08:00
|
|
|
|
<p id="description_notice_span" class="ml55"></p>
|
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 %>
|
|
|
|
|
<%= link_to l(:button_save), "#", :onclick => 'submitNews();',:onmouseover => 'this.focus()',:class => 'blue_btn fl c_white' %>
|
|
|
|
|
<%= 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'%>-->
|