<%= link_to @course.name, course_path(@course), :class => "color-grey-9" %> > <%= link_to "试卷列表", exercise_index_path(:course_id => @course.id), :class => "color-grey-9" %> > #<%= get_ex_index(@exercise, @course, @is_teacher) + 1 %>

<%= @exercise.exercise_name %>

<%= link_to "返回", student_exercise_list_exercise_path(@exercise), :class => "fr font-12 mr15 mt3 color-grey" %>
<% edit_mode = @is_new && @is_teacher %>

发布设置

<% if @is_teacher %> 编辑 <% end %>

答题设置

  • > (选中则学生答题时,题目顺序按照题型随机显示)
    > (选中则学生答题时,选项顺序随机显示)

公开设置

  • > (选中则在截止时间之后对班级学生公开所有成员的成绩,否则不公开)
  • > (选中则在截止时间之后对班级学生公开试卷题目的答案,否则不公开)
<%= form_tag(ex_setting_exercise_path(@exercise), :method => "post", :id => 'exercise_setting_form') do |f| %>

发布设置

  • 1 ? 'disabled' : '' %> class="fl task-form-15 task-height-40 panel-box-sizing <%= @exercise.try(:exercise_status) > 1 ? 'disabled-bg' : '' %>" placeholder="请选择发布时间">
  • class="fl task-form-15 task-height-40 panel-box-sizing <%= @exercise.try(:exercise_status) == 3 ? 'disabled-bg' : '' %>" placeholder="请选择截止时间"> 不能早于发布时间

答题设置

  • class="magic-checkbox fl mt5 magic-checkbox_show" id="dt_3" type="checkbox" <%= @exercise.question_random == 1 ? 'checked' : '' %>> (选中则学生答题时,题目顺序按照题型随机显示)
    class="magic-checkbox fl mt5 magic-checkbox_show" id="dt_4" type="checkbox" <%= @exercise.choice_random == 1 ? 'checked' : '' %>> (选中则学生答题时,选项顺序随机显示)

公开设置

  • > (选中则在截止时间之后对班级学生公开所有成员的成绩,否则不公开)
  • > (选中则在截止时间之后对班级学生公开试卷题目的答案,否则不公开)
<% end %>