# HG changeset patch # User nishanth # Date 1267484001 -19800 # Node ID f21284458b8c01839fe21e920ac427d60e87b370 # Parent 8f31ed9817fa5b239129e442fa72b9eb7919709c forgot to add the templates. so added now. diff -r 8f31ed9817fa -r f21284458b8c templates/task/delete.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/task/delete.html Tue Mar 02 04:23:21 2010 +0530 @@ -0,0 +1,12 @@ +{% extends 'base.html' %} +{% block title %} + {{task.title}} +{% endblock %} +{% block content %} + Are you sure you want to delete the task. This action cannot be undone.
+ +
+ Reason: + +
+{% endblock %} diff -r 8f31ed9817fa -r f21284458b8c templates/task/edittask.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/task/edittask.html Tue Mar 02 04:23:21 2010 +0530 @@ -0,0 +1,10 @@ +{% extends 'base.html' %} +{% block content %} + {% if error_msg %} + {{ error_msg }}
+ {% endif %} +
+ {{form.as_p}} + +
+{% endblock %}