2014-11-02 16:15:14 +08:00
|
|
|
|
<% reply_allow = JournalsForMessage.create_by_user? User.current %>
|
|
|
|
|
|
2014-11-02 09:46:07 +08:00
|
|
|
|
<script type="text/javascript" language="javascript">
|
2014-10-30 19:32:43 +08:00
|
|
|
|
//<!CDATA[
|
|
|
|
|
function g(o){return document.getElementById(o);}
|
|
|
|
|
function HoverLi(n){
|
2014-10-31 17:00:12 +08:00
|
|
|
|
//如果有N个标签,就将i<=N;
|
2014-11-02 14:41:41 +08:00
|
|
|
|
for(var i=3;i<=5;i++){g('ping_tb_'+i).className='ping_normaltab';g('tbc_0'+i).className='ping_undis';}g('tbc_0'+n).className='ping_dis';g('ping_tb_'+n).className='ping_hovertab';
|
2014-10-30 19:32:43 +08:00
|
|
|
|
}
|
2014-10-31 17:00:12 +08:00
|
|
|
|
//如果要做成点击后再转到请将<li>中的onmouseover 改成 onclick;
|
|
|
|
|
//]]>
|
2014-10-30 19:32:43 +08:00
|
|
|
|
</script>
|
2014-11-02 11:17:39 +08:00
|
|
|
|
<%= javascript_include_tag 'seems_rateable/jRating', 'seems_rateable/rateable'%>
|
2014-10-30 19:32:43 +08:00
|
|
|
|
<div id="popbox">
|
|
|
|
|
<div class="ping_con">
|
2014-11-02 09:46:07 +08:00
|
|
|
|
<h2><%= @homework.name %></h2>
|
2014-10-30 19:32:43 +08:00
|
|
|
|
<ul>
|
2014-11-03 17:31:04 +08:00
|
|
|
|
<li><%= l(:label_create_person) %>:
|
|
|
|
|
<span class="c_grey">
|
|
|
|
|
<% if @is_anonymous_comments && @is_comprehensive_evaluation != 1 %>
|
|
|
|
|
<%= l(:label_anonymous) %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to @homework.user, user_path(@homework.user)%>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
2014-11-02 09:46:07 +08:00
|
|
|
|
<li style=" margin-left:130px;"><%= l(:label_activity_time) %>:<span class="c_grey" ><%=format_time @homework.created_at %></span></li>
|
2014-10-30 19:32:43 +08:00
|
|
|
|
</ul>
|
|
|
|
|
<div class="cl"></div>
|
2014-11-02 09:46:07 +08:00
|
|
|
|
<% if @homework.users.count > 0 %>
|
|
|
|
|
<div><%= l(:label_participation_person) %>:
|
2014-11-03 17:31:04 +08:00
|
|
|
|
<% if @is_anonymous_comments && @is_comprehensive_evaluation != 1 %>
|
|
|
|
|
<%= l(:label_anonymous) %>
|
|
|
|
|
<%else%>
|
|
|
|
|
<% @homework.users.each do |homework_user| %>
|
|
|
|
|
<span class="c_grey"><%= link_to homework_user, user_path(homework_user)%></span>
|
|
|
|
|
<% if @homework.users.count > 1 && homework_user != @homework.users.last %>
|
|
|
|
|
、
|
|
|
|
|
<% end %>
|
2014-11-02 09:46:07 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
2014-11-03 17:31:04 +08:00
|
|
|
|
|
2014-11-02 09:46:07 +08:00
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
<p>
|
|
|
|
|
<% if @homework.description != nil && @homework.description != "" %>
|
|
|
|
|
<%= @homework.description %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<div style="font-size: 15px;color: #15BCCC;vertical-align:middle;padding-top: 10px;padding-left: 10px ">
|
|
|
|
|
<strong><%= l(:label_homework_without_description) %></strong>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p>
|
|
|
|
|
<p style=" border-bottom:none; color:#333; margin-top:8px;"><strong><%= l(:label_attachment) %>:
|
|
|
|
|
</strong>
|
|
|
|
|
<span>
|
|
|
|
|
<% if @is_evaluation || is_teacher%>
|
|
|
|
|
<% options = {:author => true } %>
|
|
|
|
|
<%= render :partial => 'app_link', :locals => {:attachments => @homework.attachments, :options => options} %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= l(:label_cant_download) %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</span>
|
|
|
|
|
</p>
|
2014-10-30 19:32:43 +08:00
|
|
|
|
|
2014-11-03 15:28:54 +08:00
|
|
|
|
<div class="ping_star" id="star_score">
|
|
|
|
|
<%= render :partial => 'show_star',:locals => {:is_comprehensive_evaluation => @is_comprehensive_evaluation,:totle_score => @totle_score,:has_evaluation => @has_evaluation ,
|
2014-11-03 17:31:04 +08:00
|
|
|
|
:homework => @homework} %>
|
2014-10-30 19:32:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
2014-11-04 14:49:36 +08:00
|
|
|
|
<div id="add_jour">
|
|
|
|
|
<%= render :partial => 'addjour', :locals => {:homework_attach => @homework, :sta => 0, :is_comprehensive_evaluation => @is_comprehensive_evaluation} %>
|
|
|
|
|
</div>
|
2014-10-30 19:32:43 +08:00
|
|
|
|
<div class="cl"></div>
|
2014-10-31 17:00:12 +08:00
|
|
|
|
</div><!---ping_con end--->
|
2014-10-30 19:32:43 +08:00
|
|
|
|
|
2014-11-03 14:47:28 +08:00
|
|
|
|
<%= render :partial => 'histoey_new' %>
|
2014-10-30 19:32:43 +08:00
|
|
|
|
|
|
|
|
|
</div>
|
2014-11-02 14:41:41 +08:00
|
|
|
|
</div>
|