templates/base.html
author nishanth
Wed, 21 Apr 2010 19:33:18 +0530
changeset 34 8d0d82c981b3
parent 19 4911302379ac
child 52 adab2d07981a
permissions -rw-r--r--
added "return to admin page" link in open_quiz page
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     1
<html>
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     2
<head>
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     3
<title>
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     4
{% block title %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     5
{% endblock %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     6
</title>
19
4911302379ac the basic quiz workflow is ready
nishanth
parents: 5
diff changeset
     7
{% block script %}
4911302379ac the basic quiz workflow is ready
nishanth
parents: 5
diff changeset
     8
{% endblock %}
5
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     9
</head>
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
    10
<body>
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
    11
{% block content %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
    12
{% endblock %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
    13
</body>
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
    14
</html>