{% extends "todo/base.html" %} {% block title %}Task:{{ task.title }}{% endblock %} {% block content %}
{{ task.note|safe|urlize|linebreaks }}
{{ comment.author.first_name }} {{ comment.author.last_name }}, {{ comment.date|date:"F d Y P" }}
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 %}