diff -r 7c9fea7e28c8 -r a93eebabfeb1 templates/task/view.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/task/view.html Thu Feb 04 22:12:48 2010 +0530 @@ -0,0 +1,28 @@ +{% extends 'base.html' %} +{% block title %} + {{task.title}} +{% endblock %} +{% block content %} + Browse tasks +

{{ task.title }}


+ + created by {{ task.created_by.username }} on {{ task.creation_datetime.ctime }}
+
Description:
+
{{ task.desc }}
+ {% if comments %} +
comments:
+ {% for comment in comments %} +
{{ comment.created_by.username }} at {{ comment.creation_datetime.ctime }} wrote:
+ {{ comment.data }}
+ {% endfor %} + {% endif %} + + {% if not is_guest %} +
Add comment:
+
+ +
+ +
+ {% endif %} +{% endblock %}