diff -r a9c458c7782a -r aea7e764c033 pytask/templates/task/view.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pytask/templates/task/view.html Fri Jan 29 19:27:26 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 %}