{% extends "base.html" %} {% block content %}
Task #{{ task.id }} | Created: {{ task.created_at.strftime('%d %b %Y %H:%M') }}
{{ task.description }}
{% else %}No description provided.
{% endif %}| Task Type | {{ task.task_type or "General" }} |
|---|---|
| Department | {{ task.department or "Unassigned" }} |
| Work Order # | {{ task.work_order_number or "N/A" }} |
| Client | {{ task.client_name or "N/A" }} |
| Estimated Hours | {{ task.estimated_hours or 0 }} hrs |
|---|---|
| Actual Hours | {{ task.actual_hours or 0 }} hrs |
| Start Date | {{ task.start_date.strftime('%d %b %Y') if task.start_date else "Not set" }} |
| Linked Enquiry | {% if task.enquiry_id %} {{ task.enquiry.enquiry_number }} {% else %} None {% endif %} |
No tags assigned.
{% endif %}{{ comment.details }}
{% if comment.attachments %} Attachments: {{ comment.attachments|length }} {% endif %}No comments yet. Start the discussion!
{% endif %}