pytask/templates/task/create.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 22:43:55 +0530
changeset 336 01c1e6966d86
child 425 e15749fab2e4
permissions -rw-r--r--
created template for create_task

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