{% 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 %}