{% extends "todo/base.html" %} {% block title %}Task:{{ task.title }}{% endblock %} {% block content %}

{{ task.title }}

{% if task.note %}

{{ task.note|safe|urlize|linebreaks }}

{% endif %}
{# Task edit / new task form #} {% include 'todo/include/task_edit.html' %}
Add comment
{% csrf_token %}
{% if comment_list %}
Comments on this task
{% for comment in comment_list %}

{{ comment.author.first_name }} {{ comment.author.last_name }}, {{ comment.date|date:"F d Y P" }}

{{ comment.body|safe|urlize|linebreaks }} {% endfor %} {% else %}
No comments (yet).
{% endif %}
{% endblock %}