{% extends "base.html" %} {% load static %} {% block title %}Insurance Information - Patients{% endblock %} {% block css %} {% endblock %} {% block content %}

Insurance Information Patient Insurance Management

Insurance Records

{{ total_insurance }}
Total Insurance Records
{{ active_insurance }}
Active Policies
{{ expiring_soon }}
Expiring Soon
{{ expired_insurance }}
Expired Policies
{% for insurance in object_list %} {% empty %} {% endfor %}
Patient Insurance Provider Policy Number Type Status Effective Date Expiration Date Coverage Actions
{{ insurance.patient.patient_id }}
{{ insurance.insurance_provider }}
{% if insurance.group_number %} Group: {{ insurance.group_number }} {% endif %}
{{ insurance.policy_number }} {% if insurance.member_id %}
Member: {{ insurance.member_id }} {% endif %}
{{ insurance.get_insurance_type_display }} {{ insurance.get_status_display }} {% if insurance.status == 'ACTIVE' and insurance.is_expiring_soon %}
Expiring Soon {% endif %}
{% if insurance.effective_date %} {{ insurance.effective_date|date:"M d, Y" }} {% else %} Not set {% endif %} {% if insurance.expiration_date %} {{ insurance.expiration_date|date:"M d, Y" }} {% if insurance.is_expired %}
Expired {% elif insurance.is_expiring_soon %}
{{ insurance.days_until_expiration }} days {% endif %} {% else %} No expiration {% endif %}
{% if insurance.coverage_details %} {% else %} No details {% endif %}
No insurance records found
Add First Insurance Record
{% if is_paginated %} {% endif %}
{% endblock %} {% block js %} {% endblock %}