summaryrefslogtreecommitdiff
path: root/testapp/exam/templates/exam/edit_quiz.html
blob: 6445907b7670b1f64e82262aa2b9652c7ab08f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% extends "manage.html" %}


{% block subtitle %}Edit Quiz(zes){% endblock %}

{% block css %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/question_quiz.css" type="text/css" /> 
{% endblock %}

{% block script %}
<script src="{{ URL_ROOT }}/static/exam/js/edit_quiz.js"></script>
{% endblock %}

{% block onload %} onload = 'javascript:form_load();' {% endblock %}

{% block manage %}
<form name=frm action="{{URL_ROOT}}/exam/manage/editquiz/" method="post">
  {% csrf_token %}
  <center>
  <table class=span1>
	{% for form in forms %}
 	<tr><td><b>Start Date: <td>{{ form.start_date}} 
    <tr><td><b>Duration: <td> {{ form.duration }}<br>{{form.duration.help_text}} 
	<tr><td><b>Active: <td> {{ form.active }} 
	<tr><td><b>Description: <td> {{ form.description }}
    <tr><td><b>Passing Criteria: <td> {{ form.pass_criteria }}<br>{{form.pass_criteria.help_text}}
	<tr><td><b>Language: <td> {{ form.language }}
	<tr><td><b>Prerequisite: <td> {{ form.prerequisite }}
	<hr>
  {% endfor %}
  </table>
  </center>
{% for i in data %}
    <input type=hidden name='quizzes' value="{{ i }}" /> 
{% endfor %}
  <center><button class="btn" type="submit" name="save">Save</button>
  <button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/showquiz/");'>Cancel</button> </center>
</form>
{% endblock %}