From 0143710e78ae01bae78a3b760fc8410bc86a3b2b Mon Sep 17 00:00:00 2001 From: prathamesh Date: Fri, 11 Jul 2014 14:14:19 +0530 Subject: Moved templates and static inside the app. --- .../templates/exam/automatic_questionpaper.html | 88 ---------------------- 1 file changed, 88 deletions(-) delete mode 100644 testapp/templates/exam/automatic_questionpaper.html (limited to 'testapp/templates/exam/automatic_questionpaper.html') diff --git a/testapp/templates/exam/automatic_questionpaper.html b/testapp/templates/exam/automatic_questionpaper.html deleted file mode 100644 index fcd3db5..0000000 --- a/testapp/templates/exam/automatic_questionpaper.html +++ /dev/null @@ -1,88 +0,0 @@ -{% extends "manage.html" %} - - -{% block subtitle %}Design Question Paper{% endblock %} - -{% block css %} - - - -{% endblock %} -{% block script %} - - - -{% endblock %} - -{% block manage %} - -
Automatic mode to design the Question Paper

-
- {% csrf_token %} -
- Tag Conditions: - - - - - - - - - -
- -
- -
Number of question:  
- -
-
-

Below is the list of Questions fetched according to the given tag conditions

-
-
- -
- {% endfor %} -
Summary - Type - Points - Tags - {% for question in data.questions %} - -
{{ question.summary }} {{ question.type }} {{ question.points }} - {% for tag in question.tags.all %} - {{ tag }} - {% endfor %} -
- {% if data.msg %}
{{ data.msg }}
{% endif %} -
- - -{% endblock %} -- cgit