{% extends 'base.html' %} {% block title %}{{ task.title }} - Task Management System{% endblock %} {% block content %}
{{ task.description|linebreaks }}
| Department: | {{ task.department.name }} |
| Assigned To: | {{ task.assigned_to.get_full_name|default:"Unassigned" }} |
| Created By: | {{ task.created_by.get_full_name }} |
| Due Date: | {{ task.due_date|date:"M d, Y H:i" }} {% if task.is_overdue %} {% endif %} |
| Created: | {{ task.created_at|date:"M d, Y" }} |
| Completed: | {{ task.completed_at|date:"M d, Y H:i" }} |
{{ comment.content|linebreaks }}
No comments yet. Be the first to comment!
{% endfor %}