{% extends "base.html" %} {% block title %}Task Details{% endblock %} {% block content %}
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' }}