{% extends "base.html" %} {% block title %}Task Details - Vera Medical CMS{% endblock %} {% block content %}

Task Details

View and manage Bring Forward task

Edit Back to Tasks

Task Information

{{ task.task_title }}

{% if task.task_description %}

{{ task.task_description }}

{% endif %}

{% if task.due_date %} {% set task_date_str = task.due_date|string %} {% set today_str = today|string %} {% if task_date_str < today_str and task.status == 'pending' %} {{ task.due_date }} (Overdue) {% else %} {{ task.due_date }} {% endif %} {% else %} No due date {% endif %}

{{ task.priority|title }}
{{ task.status|replace('_', ' ')|title }}

{{ task.assigned_to or '-' }}

{% if task.notes %}

{{ task.notes }}

{% endif %}

Linked Records

{% if task.file_case_id %}
{{ task.file_case_id }}
{% endif %} {% if task.appointment_date %}
{{ task.appointment_date }}
{% endif %} {% if task.invoice_number %}
{{ task.invoice_number }}
{% endif %} {% if not task.file_case_id and not task.appointment_date and not task.invoice_number %}

No linked records

{% endif %}

Task Metadata

Created: {{ task.created_at or 'N/A' }}
Created By: {{ task.created_by or 'System' }}
{% if task.completed_at %}
Completed: {{ task.completed_at }}
{% endif %}
{% if task.status != 'completed' %}

Danger Zone

{% endif %} {% endblock %}