44 lines
2.6 KiB
Plaintext
44 lines
2.6 KiB
Plaintext
<div class="task-pm-box mt20 mb20">
|
||
<div class="panel-header clearfix">
|
||
<h3 class="fl mt5">全部任务</h3><span class="btn-cir btn-cir-grey ml5 mt8 fl"><%= @challenges.count %></span>
|
||
<a href="<%= new_shixun_challenge_path(@shixun) %>" class=" task-btn task-btn-green fr">新建阶段</a>
|
||
</div>
|
||
<div class="panel-list">
|
||
<% @challenges.each_with_index do |challenge, index| -%>
|
||
<div class=" clearfix panel-inner" id="shixun_index_<%= index %>">
|
||
<h4 class="fl panel-inner-title "><i class="fa fa-dot-circle-o font-18 color-green mr5"></i><span class="color-red mr10">第<%= challenge.position %>关</span>
|
||
<%= link_to challenge.subject, shixun_challenge_path(@shixun.id, challenge), :target => "_blank" %>
|
||
</h4>
|
||
<p class="fr" style="display: none" id="shixun_icon_<%= index %>">
|
||
<% unless challenge.position < 2 %>
|
||
<a href="<%= index_up_shixun_challenge_path(challenge, :shixun_id => @shixun) %>" title="上移" data-remote="true"><i class="fa fa-long-arrow-up color-grey font-16 mr5" ></i></a>
|
||
<% end %>
|
||
<% if @shixun.challenges.count != challenge.position %>
|
||
<a href="<%= index_down_shixun_challenge_path(challenge, :shixun_id => @shixun) %>" title="下移" data-remote="true"><i class="fa fa-long-arrow-down color-grey font-16 mr5" ></i></a>
|
||
<% end %>
|
||
<a href="<%= edit_shixun_challenge_path(challenge, :shixun_id => @shixun) %>" title="编辑" ><i class="fa fa-pencil-square-o color-grey font-16 mr5" ></i></a>
|
||
<a href="#" title="删除" ><i class="fa fa-trash-o color-grey font-16 mr5" ></i></a>
|
||
<!--<a href="#" title="排名" ><i class="fa fa-signal color-grey font-16 mr5 " ></i></a>-->
|
||
</p>
|
||
<div class="cl"></div>
|
||
<p class="ml15 mt15 color-grey">
|
||
<span class=" mr10">正在挑战:<%= shixun_running @shixun %></span>
|
||
<span class=" mr10">完成挑战:<%= shixun_done @shixun %></span>
|
||
<span class=" mr10">最佳表现:98分</span>
|
||
<span class=" mr10">测评次数:3次</span>
|
||
<span class=" mr10">平均表现:80分 </span>
|
||
</p>
|
||
</div>
|
||
<script>
|
||
$(document).ready(function(){
|
||
$("#shixun_index_<%= index %>").mouseenter(function(){
|
||
$("#shixun_icon_<%= index %>").show();
|
||
});
|
||
$("#shixun_index_<%= index %>").mouseleave(function(){
|
||
$("#shixun_icon_<%= index %>").hide();
|
||
});
|
||
});
|
||
</script>
|
||
<% end %>
|
||
</div>
|
||
</div> |