pytask/templates/task/edit.html
author Nishanth Amuluru <nishanth@fossee.in>
Sun, 09 Jan 2011 19:35:31 +0530
changeset 366 4c349f310dfc
child 425 e15749fab2e4
permissions -rw-r--r--
edit task works now
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
366
4c349f310dfc edit task works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
4c349f310dfc edit task works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
4c349f310dfc edit task works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
    <form action="" method="post">
4c349f310dfc edit task works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
    {% csrf_token %}
4c349f310dfc edit task works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
    {{form.as_p}}
4c349f310dfc edit task works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
    <input type="submit" value="Update">
4c349f310dfc edit task works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
    </form>
4c349f310dfc edit task works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
{% endblock %}