{% extends "todo/base.html" %} {% load url from future %} {% block title %}Task: {{ task.title }}{% endblock %} {% block content %} {% if messages %}
→ Click to edit details ←
In list: {{ task.list }} Assigned to: {{ task.assigned_to.first_name }} {{ task.assigned_to.last_name }} 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 %}