{% extends "patient/card/card_base.html.twig" %} {% block content %}
{{ "Patient Balance Due"|xlt }}
{{ patientBalance|money|text }}
{{ "Insurance Balance Due"|xlt }}
{{ insuranceBalance|money|text }}
{{ "Total Balance Due"|xlt }}
{{ totalBalance|money|text }}
{% if unallocated > 0 %}
{{ "Unallocated Patient Pre-Payment"|xlt }}
{{ unallocated|money|text }}
{% endif %} {% if collectionBalance > 0 %}
{{ "Collection Balance"|xlt }}
{{ collectionBalance|money|text }}
{% endif %} {% if billingNote %}
{{ "Billing Note"|xlt }}
{{ billingNote|text }}
{% endif %} {% if provider %}
{{ "Primary Insurance"|xlt }}
{{ insName|text }}
{% if copay %}
{{ "Copay"|xlt }}
{{ copay|text }}
{% endif %}
{{ "Effective Date"|xlt }}
{{ effDate|shortDate|text }}
{{ "Effective Date End"|xlt }}
{{ effDateEnd|shortDate|text }}
{% endif %}
{% endblock %}