socialforge/app/views/news/_course_form.html.erb

41 lines
2.2 KiB
Plaintext
Raw Normal View History

2015-06-17 17:01:03 +08:00
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg' %>
<li>
2015-03-24 09:51:42 +08:00
<label><span class="c_red">*</span>&nbsp;<%= l(:field_title) %>&nbsp;&nbsp;</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 %>">
<p id="title_notice_span" class="ml55"></p>
2015-03-24 09:51:42 +08:00
</li>
<li class="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>&nbsp;<%= l(:field_description) %>&nbsp;&nbsp;</label>
<div class="fl" style="width: 91%">
<%= f.kindeditor :description,:editor_id=>'news_description_editor' %>
</div>
2015-04-03 11:19:15 +08:00
<p id="description_notice_span" class="ml55"></p>
<% else %>
<label class="fl" ><span class="c_red">*</span>&nbsp;<%= l(:field_description) %>&nbsp;&nbsp;</label>
<div class="fl" style="width: 91%">
<%= f.kindeditor :description,:editor_id=>'news_description_editor',:owner_id => @news.id,:owner_type => OwnerTypeHelper::NEWS %>
</div>
2015-04-03 11:19:15 +08:00
<p id="description_notice_span" class="ml55"></p>
<% end %>
2015-03-24 09:51:42 +08:00
</li>
<div class="cl"></div>
<li>
<label class="fl mt5">&nbsp;&nbsp;<%= l(:label_attachment_plural) %>&nbsp;&nbsp;</label>
2015-03-27 15:41:28 +08:00
<%= render :partial => 'attachments/new_form', :locals => {:container => @news} %>
<div class="cl"></div>
2015-03-24 17:12:51 +08:00
</li>
<li class="ml40" >
2015-03-26 11:02:18 +08:00
<% if is_new %>
2015-05-11 16:06:40 +08:00
<%= link_to l(:button_create), "javascript:void(0)", :onclick => 'submitNews();', :onmouseover => 'submitFocus(this);', :class => 'blue_btn fl c_white' %>
2015-03-26 11:02:18 +08:00
<%= link_to l(:button_cancel), course_news_index_path(@course), :onclick => '$("#add-news").hide()', :class => 'blue_btn grey_btn fl c_white' %>
<% else %>
2015-05-11 16:06:40 +08:00
<%= link_to l(:button_save), "javascript:void(0)", :onclick => "submitNews();",:onmouseover => 'this.focus()',:class => 'blue_btn fl c_white' %>
<%= link_to l(:button_cancel), news_path(@news), :class => 'blue_btn grey_btn fl c_white' %>
2015-03-26 11:02:18 +08:00
<% end %>
2015-03-24 17:12:51 +08:00
<div class="cl"></div>
</li>
2015-06-17 17:01:03 +08:00
<!-- <#%= wikitoolbar_for 'news_description'%>-->