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. --- testapp/templates/exam/add_question.html | 41 -------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 testapp/templates/exam/add_question.html (limited to 'testapp/templates/exam/add_question.html') diff --git a/testapp/templates/exam/add_question.html b/testapp/templates/exam/add_question.html deleted file mode 100644 index b0b22b1..0000000 --- a/testapp/templates/exam/add_question.html +++ /dev/null @@ -1,41 +0,0 @@ -{% extends "manage.html" %} - - -{% block subtitle %}Add Question{% endblock %} - -{% block css %} - - -{% endblock %} - -{% block script %} - - - - -{% endblock %} - -{% block onload %} onload='javascript:textareaformat();' {% endblock %} - -{% block manage %} -
- {% csrf_token %} -
- -
Summary: {{ form.summary }}{{ form.summary.errors }} -
Language: {{form.language}}{{form.language.errors}} -
Active: {{ form.active }}{{form.active.errors}}   Type:  {{ form.type }}{{form.type.errors}} -
Points:{{ form.points }}{{ form.points.errors }} -
Rendered:

-
Description: {{ form.description}} {{form.description.errors}} -
Test: {{ form.test }}{{form.test.errors}} -
Snippet: {{ form.snippet }}{{ form.snippet.errors }}
Tags: {{ form.tags }} -
Options: {{ form.options }} {{form.options.errors}} - - -
-
-
-
-{% endblock %} - -- cgit