summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/edit_question.html
blob: a189ac57f74e43b3c695a4e8e65c583181e61c8d (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
{% 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" /> 
{% endblock %}
{% block script %}
<script type='text/javascript'>
function my_render(frm)
{
	for(var i=1;i<=frm.description.length;i++)
	{
		document.getElementById(i).innerHTML = frm.description[i-1].value;
	}
	
}
</script>
{% endblock %}
{% block manage %}
<form name='frm' action="{{URL_ROOT}}/exam/manage/editquestion/" method="post" onKeyPress='javascript:my_render(frm);'>
  {% csrf_token %}

  {% for form in forms %}
<b>Look of Question in HTML Format :</b> 
<p id='{{forloop.counter}}'></p> 
  <table class=span1>
  {{ form.as_table }}
  </table>
  <hr>
  {% 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 %}