templates/base.html
author nishanth
Thu, 22 Apr 2010 12:17:21 +0530
changeset 50 0842b3439c3e
parent 19 4911302379ac
child 52 adab2d07981a
permissions -rw-r--r--
implemented extra filter on string patterns. now string patterns will not be split like other pattersns
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>