43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
<!-- <h3><%#=l(:label_news_new)%></h3> -->
|
|
<%
|
|
btn_tips = l(:label_news_notice)
|
|
label_tips = l(:label_course_news)
|
|
%>
|
|
<% if @project %>
|
|
<div class="project_r_h">
|
|
<h2 class="project_h2"><%= l(:label_news) %></h2>
|
|
</div>
|
|
<div class="hwork_new">
|
|
<%= error_messages_for @news %>
|
|
<p class="talk_top pl15" >
|
|
<%= l(:label_news_new)%>
|
|
</p>
|
|
<ul>
|
|
<%= labelled_form_for @news, :url => project_news_index_path(@project),
|
|
:html => {:id => 'news-form', :multipart => true} do |f| %>
|
|
<%= render :partial => 'news/project_form', :locals => {:f => f, :is_new => true} %>
|
|
<% end if @project %>
|
|
</ul>
|
|
<div id="preview" class="wiki"></div>
|
|
</div>
|
|
<% elsif @course %>
|
|
<div class="project_r_h">
|
|
<h2 class="project_h2"><%= label_tips %></h2>
|
|
</div>
|
|
<div class="hwork_new">
|
|
<%= error_messages_for @news %>
|
|
<p class="talk_top pl15" >
|
|
<%= l(:bale_news_notice)%>
|
|
</p>
|
|
<ul>
|
|
<%= labelled_form_for @news, :url => course_news_index_path(@course),
|
|
:html => {:id => 'news-form', :multipart => true} do |f| %>
|
|
<%= render :partial => 'news/course_form', :locals => {:f => f, :is_new => true} %>
|
|
|
|
<% end if @course %>
|
|
</ul>
|
|
<div id="preview" class="wiki"></div>
|
|
</div>
|
|
<% end %>
|
|
<div id="preview" class="wiki"></div>
|