{% extends "base.html" %} {% block title %}Task Details{% endblock %} {% block content %}

📋 {{ task.title }}

Status: {{ task.status }}

Priority: {{ task.priority }}

Assigned To: {{ task.assigned_to or 'Not assigned' }}

Created By: {{ task.created_by or 'N/A' }}

Due Date: {{ task.due_date or 'No due date' }}

Category: {{ task.category or 'N/A' }}

Tags: {{ task.tags or 'N/A' }}


Description
{{ task.description|safe if task.description else 'No description added.' }}
← Back to Tasks
{% endblock %}