123 lines
6.4 KiB
Plaintext
123 lines
6.4 KiB
Plaintext
<script type="text/javascript">
|
|
$(function(){
|
|
$("#RSide").removeAttr("id");
|
|
$("#homework_page_right").css("min-height",$("#LSide").height()-30);
|
|
$("#Container").css("width","1000px");
|
|
});
|
|
</script>
|
|
<div class="homepageRight mt0 ml10">
|
|
<div class="resources">
|
|
<div class="testStatus"><!--头部显示 start-->
|
|
<h1 class="ur_page_title" id="polls_name_h"><%= exercise.exercise_name%></h1>
|
|
<div class="fontGrey2">
|
|
<% unless exercise.publish_time.nil? %>
|
|
<span class="mr100">发布时间:<%=Time.parse(h(exercise.publish_time)).strftime("%Y-%m-%d %H:%M:%S") %></span>
|
|
<% end %>
|
|
<span class="mr100">截止时间:<%=Time.parse(h(exercise.end_time)).strftime("%Y-%m-%d %H:%M:%S") %></span>
|
|
<% if exercise.time != -1 %>
|
|
<span class="fr">测验时长:<%=exercise.time %>分钟</span>
|
|
<% end %>
|
|
</div>
|
|
<div class="testDesEdit mt5"><%= exercise.exercise_description.nil? ? "" : exercise.exercise_description.html_safe%></div>
|
|
<div class="cl"></div>
|
|
</div>
|
|
<% mc_question_list = exercise.exercise_questions.where("question_type=1") %>
|
|
<% mcq_question_list = exercise.exercise_questions.where("question_type=2") %>
|
|
<% single_question_list = exercise.exercise_questions.where("question_type=3") %>
|
|
<div class="testStatus" id="mc_question_list" style="display: <%=mc_question_list.count > 0 ? "" : "none" %>">
|
|
<h3 class="fontGrey3">单选题</h3>
|
|
<% mc_question_list.each_with_index do |exercise_question, list_index| %>
|
|
<div id="poll_questions_<%= exercise_question.id%>">
|
|
<div id="show_poll_questions_<%= exercise_question.id %>">
|
|
<div>
|
|
<div class="testEditTitle"> 第<%= list_index+1%>题:<%= exercise_question.question_title %> (<%= exercise_question.question_score %>分)
|
|
<br />
|
|
标准答案:<%= convert_to_char(exercise_question.exercise_standard_answers.first.exercise_choice_id.to_s) if exercise_question.exercise_standard_answers.first %>
|
|
</div>
|
|
<div class="cl"></div>
|
|
<div class="ur_inputs">
|
|
<table class="ur_table" style="width:675px;">
|
|
<tbody>
|
|
<% exercise_question.exercise_choices.reorder("choice_position").each_with_index do |exercise_choice,index| %>
|
|
<tr>
|
|
<td>
|
|
<label>
|
|
<input class="ur_radio" type="radio" name="<%= exercise_question %>" value="<%= exercise_choice.choice_text%>" >
|
|
<%= convert_to_char((index+1).to_s)%> <%= exercise_choice.choice_text%>
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="testStatus" id="mcq_question_list" style="display: <%=mcq_question_list.count > 0 ? "" : "none" %>">
|
|
<h3 class="fontGrey3">多选题</h3>
|
|
<% mcq_question_list.each_with_index do |exercise_question, list_index| %>
|
|
<div id="poll_questions_<%= exercise_question.id%>">
|
|
<div id="show_poll_questions_<%= exercise_question.id %>">
|
|
<div>
|
|
<div class="testEditTitle"> 第<%= list_index+1%>题:<%= exercise_question.question_title %> (<%= exercise_question.question_score %>分)
|
|
<br />
|
|
标准答案:<%= convert_to_char(exercise_question.exercise_standard_answers.first.exercise_choice_id.to_s) if exercise_question.exercise_standard_answers.first%>
|
|
</div>
|
|
<div class="cl"></div>
|
|
<div class="ur_inputs">
|
|
<table class="ur_table" style="width:675px;">
|
|
<tbody>
|
|
<% exercise_question.exercise_choices.reorder("choice_position").each_with_index do |exercise_choice,index| %>
|
|
<tr>
|
|
<td>
|
|
<label>
|
|
<input class="ur_radio" type="checkbox" name="<%= exercise_question %>" value="<%= exercise_choice.choice_text%>" >
|
|
<%= convert_to_char((index+1).to_s)%> <%= exercise_choice.choice_text%>
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div><!--多选题显示 end-->
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="testStatus" id="single_question_list" style="display: <%=single_question_list.count > 0 ? "" : "none" %>">
|
|
<h3 class="fontGrey3">填空题</h3>
|
|
<% single_question_list.each_with_index do |exercise_question, list_index| %>
|
|
<div id="poll_questions_<%= exercise_question.id%>">
|
|
<div id="show_poll_questions_<%= exercise_question.id %>">
|
|
<div>
|
|
<div class="testEditTitle"> 第<%= list_index+1%>题:<%= exercise_question.question_title %> (<%= exercise_question.question_score %>分)
|
|
</div>
|
|
<div class="cl"></div>
|
|
<div>
|
|
<% exercise_question.exercise_standard_answers.reorder("created_at").each_with_index do |exercise_choice,index| %>
|
|
候选答案:<%= exercise_choice.answer_text%><br />
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="ur_buttons">
|
|
<%= link_to "确定",exercise_index_path(:course_id => @course.id),:class => "ur_button_submit" %>
|
|
<% if exercise.exercise_status == 1 %>
|
|
<%= link_to l(:button_edit), edit_exercise_path(exercise.id), :class => "ur_button_submit", :style => "float:right"%>
|
|
<% else %>
|
|
<span class="ur_button_submit" style="float:right; background:#a3a3a3" title="测验已发布,不可再编辑">编辑</span>
|
|
<%#= link_to l(:button_edit), '', :class => "ur_button_submit", :style => "float:right; background:#a3a3a3"%>
|
|
<% end %>
|
|
</div>
|
|
<div class="cl"></div>
|
|
<!--contentbox end-->
|
|
</div>
|
|
<!--RSide end-->
|
|
</div> |