13 lines
758 B
Plaintext
13 lines
758 B
Plaintext
<div id="popbox" style="text-align: center;margin-top: 25px">
|
|
<% if status == 0 %>
|
|
<h3 style="font-weight: normal;color: green">提交成功!</h3>
|
|
<%= link_to "确定", poll_index_path(:polls_group_id => @course.id,:polls_type => 'Course'),:class => 'commit'%>
|
|
<% elsif status == 1 %>
|
|
<h3 style="font-weight: normal;color: red">您还有尚未作答的必答题目请完成后再提交!</h3>
|
|
<%= link_to "确定", "javascript:void(0)",:onclick => 'hidden_atert_form();',:class => 'commit'%>
|
|
<% else %>
|
|
<h3 style="font-weight: normal;color: red">发生未知错误,请检查您的网络。</h3>
|
|
<%= link_to "确定", "javascript:void(0)",:onclick => 'hidden_atert_form();',:class => 'commit'%>
|
|
<% end %>
|
|
</div>
|