templates/base.html
author nishanth
Fri, 02 Jul 2010 14:26:41 +0530
changeset 88 281c4bcf848f
parent 52 adab2d07981a
permissions -rw-r--r--
now editing question is complete.
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>
52
adab2d07981a now the counter for questions start after the document has loaded completely
nishanth
parents: 19
diff changeset
    10
<body{% block onload %}{% endblock %}>
5
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>