summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/edit_question.html
blob: 73e61d75c4c7ef6794d676476531e560beb9a9d2 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{% extends "manage.html" %}

{% block subtitle %}Edit Question{% endblock %}

{% block css %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/question_quiz.css" type="text/css" />
<link rel="stylesheet" media="all" type="text/css" href="{{ URL_ROOT }}/static/exam/css/autotaggit.css" />
{% endblock %}
{% block script %}
<script src="{{ URL_ROOT }}/static/exam/js/edit_question.js"></script>
<script src="/static/taggit_autocomplete_modified/jquery.min.js" type="text/javascript"></script>
<script src="/static/taggit_autocomplete_modified/jquery.autocomplete.js" type="text/javascript"></script>
{% endblock %}

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

{% block manage %}
<form name='frm' action="{{URL_ROOT}}/exam/manage/editquestion/" method="post" onSubmit="return autosubmit()" onKeyPress='javascript:render_question(frm);'>
  {% csrf_token %}
<center><p>Click on the Question links to edit the question.</p></center>

<table>

    {% for form in forms %}
        
	<tr><td height=10><a id='a{{forloop.counter}}' onClick="data('contentDiv{{forloop.counter}}','myContent{{forloop.counter}}','a{{forloop.counter}}','{{form.summary.value}}');" style='cursor:pointer;'>{{form.summary.value}}</a>
	
        <div id="contentDiv{{forloop.counter}}" style="display:none;">
           <div id="myContent{{forloop.counter}}" style="display: none;">
	      
	      <center><table class=span1>
                 <tr><td><b>Summary:</b> <td>{{ form.summary }}{{ form.summary.errors }}
 
                 <tr><td><b>Points:<td><button class="btn-mini" name={{forloop.counter}} type="button" onClick="increase(frm,{{forloop.counter}});">+</button>{{ form.points }}<button class="btn-mini" type="button" onClick="decrease(frm,{{forloop.counter}});">-</button>{{ form.points.errors }} &nbsp; Active: &nbsp; {{ form.active }}{{form.active.errors}} &nbsp; Type: &nbsp;{{ form.type }}{{form.type.errors}}

                 <tr><td><strong>Rendered: </strong><td><p id='my{{forloop.counter}}'></p>
                 <tr><td><b>Description: <td>{{ form.description }}  {{form.description.errors}}
                 <tr><td><b>Test: <td>{{ form.test }}{{form.test.errors}}
                 <tr><td><b>Snippet: <td>{{ form.snippet }}{{ form.snippet.errors }}</td></b></td></tr>
                 <tr><td>Tags: <td>{{ form.tags }}
                 <tr><td id='label_option{{forloop.counter}}'><b>Options: <td>{{ form.options }}  {{form.options.errors}} {{form.options.helptext}}
              </table></center>
           </div>
        </div>
    {% endfor %}
</table></center>
{% for i in data %}
    <input type=hidden name='questions' value="{{ i }}" /> 
{% endfor %}

  <center><button class="btn" type="submit" name="savequestion">Save</button>
  <button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/exam/manage/questions/");'>Cancel</button> </center>
</form>
{% endblock %}