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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
336
01c1e6966d86 created template for create_task
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
01c1e6966d86 created template for create_task
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
01c1e6966d86 created template for create_task
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
<form action="" method="post">
01c1e6966d86 created template for create_task
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
{% csrf_token %}
01c1e6966d86 created template for create_task
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
{{form.as_p}}
01c1e6966d86 created template for create_task
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
<input type="submit" value="Create">
01c1e6966d86 created template for create_task
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
</form>
01c1e6966d86 created template for create_task
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
{% endblock %}