#1851课程作业增加状态显示
This commit is contained in:
parent
249b08392d
commit
ae31d0b861
|
@ -56,12 +56,21 @@
|
||||||
<%= link_to(bid.name, course_for_bid_path(bid), :class => 'bid_path') %>
|
<%= link_to(bid.name, course_for_bid_path(bid), :class => 'bid_path') %>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td style="width: 120px;">
|
<td style="width: 150px;">
|
||||||
<span style="float: right">
|
<span style="float: right">
|
||||||
<% if User.current.logged? && is_cur_course_student(@course) %>
|
<% if User.current.logged? && is_cur_course_student(@course) %>
|
||||||
<% cur_user_homework = cur_user_homework_for_bid(bid) %>
|
<% cur_user_homework = cur_user_homework_for_bid(bid) %>
|
||||||
<span class="span_wping">
|
<span class="span_wping">
|
||||||
<a>匿评中..</a>
|
<% if bid.open_anonymous_evaluation == 1 %>
|
||||||
|
<% case bid.comment_status %>
|
||||||
|
<% when 0 %>
|
||||||
|
<a>未开启匿评</a>
|
||||||
|
<% when 1 %>
|
||||||
|
<a> 匿评中.. </a>
|
||||||
|
<% when 2 %>
|
||||||
|
<a> 匿评结束 </a>
|
||||||
|
<% end %>
|
||||||
|
<% end%>
|
||||||
</span>
|
</span>
|
||||||
<% if cur_user_homework && cur_user_homework.empty? %>
|
<% if cur_user_homework && cur_user_homework.empty? %>
|
||||||
<span class="span_wping">
|
<span class="span_wping">
|
||||||
|
|
Loading…
Reference in New Issue