27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
<div class="col-width fl content-submit ml15 mt15">
|
|
<div class="panel-header ">
|
|
<h3 >操作</h3>
|
|
</div>
|
|
<div class="content-submitbox">
|
|
<a href="#" class="task-btn mb10">保存修改</a>
|
|
<% if @game.status == 0 %>
|
|
<%= link_to "提交评测", { :controller => 'games',
|
|
:action => "game_build",
|
|
:id => @game,
|
|
:myshixun_id => @myshixun},
|
|
:class => "task-btn task-btn-green",
|
|
:onclick => "training_task_submmit();",
|
|
:remote => true %>
|
|
<% elsif @game.status == 2 %>
|
|
<a class="task-btn mb10">评测中..</a>
|
|
<% elsif @game.status == 1 %>
|
|
<%= link_to "下 一 步 ", {:controller => 'games',
|
|
:action => "next_step",
|
|
:id => @game,
|
|
:myshixun_id => @myshixun},
|
|
:class => "task-btn task-btn-green",
|
|
:onclick => "training_task_submmit();",
|
|
:remote => true %>
|
|
<% end %>
|
|
</div>
|
|
</div> |