{% load static %}
{% if eligibility.status == 'active' %} Patient has active insurance coverage with {{ insurance.insurance_provider }} {% elif eligibility.status == 'pending' %} Coverage verification is pending with {{ insurance.insurance_provider }} {% elif eligibility.status == 'expired' %} Coverage has expired. Please verify current insurance status. {% else %} No active coverage found with {{ insurance.insurance_provider }} {% endif %}
Unable to retrieve coverage details at this time.