pytask/templates/task/edit.html
author Nishanth Amuluru <nishanth@fossee.in>
Sun, 09 Jan 2011 19:35:31 +0530
changeset 128 4c349f310dfc
permissions -rw-r--r--
edit task works now

{% extends 'base.html' %}
{% block content %}
    <form action="" method="post">
    {% csrf_token %}
    {{form.as_p}}
    <input type="submit" value="Update">
    </form>
{% endblock %}