pytask/templates/task/create.html
changeset 11 d28fcc644fbb
parent 5 aea7e764c033
--- a/pytask/templates/task/create.html	Fri Jan 29 23:34:19 2010 +0530
+++ b/pytask/templates/task/create.html	Sat Jan 30 13:03:09 2010 +0530
@@ -1,2 +1,10 @@
 {% extends 'base.html' %}
+{% block content %}
+    {% if error_msg %}
+    {{ error_msg }}<br />
+    {% endif %}
+    <form action="" method="post">
+    {{form.as_p}}
+    <input type="submit" value="Submit">
+    </form>
 {% endblock %}