{% extends './base.html' %} {% block title %} Task: {{ task.title }} | Tasks Manager {% endblock %} {% block content %}
Created By : {{ task.creator }}
Status : {{ task.get_status_display }}
Assigned To :
Assigned to team : {{ task.team }}
{% endif %}Planned on : {{ task.planned_date }}
Due Date : {{ task.due_date }}
{% if task.status == 'PROG' or task.status == 'COMP' %}Accepted on : {{ task.accepted_date }}
Accepted By : {{ task.accepted_by }}
{% endif %} {% if task.status == 'COMP' %}Completed on : {{ task.completed_date }}
{% endif %}{{ comment.author }}, {{ comment.time }}
{{ comment.body|safe|urlize|linebreaks }}