{% extends "base.html" %} {% load static %} {% block title %}Delete Claim {{ object.claim_number }} - {{ block.super }}{% endblock %} {% block content %}
You are about to permanently delete this insurance claim. This action cannot be undone and may affect reimbursement tracking.
| Claim Number: | {{ object.claim_number }} |
| Patient: | {{ object.medical_bill.patient.get_full_name }} |
| Bill Number: | {{ object.medical_bill.bill_number }} |
| Insurance Company: | {{ object.insurance_info.insurance_company }} |
| Billed Amount: | ${{ object.billed_amount|floatformat:2 }} |
| Status: | {% if object.status == 'DRAFT' %} Draft {% elif object.status == 'SUBMITTED' %} Submitted {% elif object.status == 'PENDING' %} Pending {% elif object.status == 'APPROVED' %} Approved {% elif object.status == 'PARTIALLY_APPROVED' %} Partially Approved {% elif object.status == 'DENIED' %} Denied {% elif object.status == 'PAID' %} Paid {% elif object.status == 'APPEALED' %} Appealed {% endif %} |
| Submission Date: | {% if object.submission_date %} {{ object.submission_date|date:"M d, Y" }} {% else %} Not submitted {% endif %} |
| Created: | {{ object.created_at|date:"M d, Y" }} |
This claim cannot be deleted because: