templates/task/edittask.html
author Nishanth Amuluru <nishanth@fossee.in>
Wed, 05 Jan 2011 18:52:48 +0530
changeset 217 307f699e6102
parent 172 f21284458b8c
permissions -rw-r--r--
Now browse tasks page does not display textbooks
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
172
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     2
{% block content %}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     3
    {% if error_msg %}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     4
    {{ error_msg }}<br />
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     5
    {% endif %}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     6
    <form action="" method="post">
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     7
    {{form.as_p}}
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     8
    <input type="submit" value="Submit">
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
     9
    </form>
f21284458b8c forgot to add the templates. so added now.
nishanth
parents:
diff changeset
    10
{% endblock %}