{% extends "base.html" %} {% block title %}{% if task %}Edit Task{% else %}New Task{% endif %} - Vera Medical CMS{% endblock %} {% block content %}

{% if task %}Edit Task{% else %}Add Task{% endif %}

Create or update a follow-up task

Task Information

Link to Record

Selected Case

{% if task and case_data %}

Case #{{ case_data.file_case_id }}

Claimant: {{ case_data.claimant_first_name }} {{ case_data.claimant_last_name }}

{% if case_data.client_company_name %}

Client: {{ case_data.client_company_name }}

{% endif %} {% elif prefill and case_data %}

Case #{{ case_data.file_case_id }}

Claimant: {{ case_data.claimant_first_name }} {{ case_data.claimant_last_name }}

{% if case_data.client_company_name %}

Client: {{ case_data.client_company_name }}

{% endif %} {% endif %}

Search by case ID, case number, or claimant name

Cancel
{% if task and task.status != 'completed' %} {% endif %}
{% endblock %}