未开启匿评时老师界面取消开启/关闭匿评按钮显示

This commit is contained in:
sw 2014-11-19 10:53:22 +08:00
parent 91cb6e29d5
commit ff185852eb
2 changed files with 5 additions and 1 deletions

View File

@ -76,7 +76,8 @@
<% end %>
<% end %>
<% if (User.current.admin?||User.current.id==bid.author_id) %>
<span id="<%=bid.id %>_anonymous_comment" class="span_wping">
<% if bid.open_anonymous_evaluation == 1%>
<span id="<%=bid.id %>_anonymous_comment" class="span_wping">
<% case bid.comment_status %>
<% when 0 %>
<%= link_to '启动匿评', alert_anonymous_comment_bid_path(bid), id: "#{bid.id}_start_anonymous_comment", remote: true, disable_with: '加载中...' %>
@ -86,6 +87,7 @@
匿评结束
<% end %>
</span>
<%end%>
<span class="span_wping">
<%= link_to(
l(:button_edit),

View File

@ -106,6 +106,7 @@
<% if (User.current.admin?||User.current.id==@bid.author_id) %>
<tr>
<td valign="top" style="padding-left: 8px; font-size: 15px" colspan="2">
<% if bid.open_anonymous_evaluation == 1%>
<span id="<%=@bid.id %>_anonymous_comment">
<% case @bid.comment_status %>
<% when 0 %>
@ -116,6 +117,7 @@
匿评结束
<% end %>
</span>
<%end%>
</td>
</tr>
<% end %>