{% extends "todo/base.html" %} {% block title %}Task: {{ task.title }}{% endblock %} {% block content %} {% if auth_ok %}
→ Click to edit details ←
In list: {{ task.list }} Assigned to: {% if task.assigned_to %}{{ task.assigned_to.get_full_name }}{% else %}Anyone{% endif %} Created by: {{ task.created_by.first_name }} {{ task.created_by.last_name }} Due date: {{ task.due_date }} Completed: {{ form.completed }}
{{ comment.author.first_name }} {{ comment.author.last_name }}, {{ comment.date|date:"F d Y P" }}
No Comments
{{ comment.author.first_name }} {{ comment.author.last_name }}, {{ comment.date|date:"F d Y P" }}
{{ comment.body|safe|urlize|linebreaks }} {% empty %}No Comments
{% endfor %}