{% extends "base.html" %} {% load static %} {% block title %}Insurance Details - Patients{% endblock %} {% block content %}
| Provider: | {{ object.insurance_provider }} |
| Policy Number: | {{ object.policy_number }} |
| Member ID: |
{% if object.member_id %}
{{ object.member_id }}
{% else %}
Not provided
{% endif %}
|
| Group Number: |
{% if object.group_number %}
{{ object.group_number }}
{% else %}
Not provided
{% endif %}
|
| Insurance Type: | {{ object.get_insurance_type_display }} |
| Status: |
{{ object.get_status_display }}
{% if object.status == 'ACTIVE' and object.is_expiring_soon %}
Expires in {{ object.days_until_expiration }} days {% endif %} |
| Effective Date: | {% if object.effective_date %} {{ object.effective_date|date:"M d, Y" }} {% else %} Not set {% endif %} |
| Expiration Date: |
{% if object.expiration_date %}
{{ object.expiration_date|date:"M d, Y" }}
{% if object.is_expired %}
Expired {% elif object.is_expiring_soon %} {{ object.days_until_expiration }} days remaining {% endif %} {% else %} No expiration {% endif %} |
| Copay: | {% if object.copay %} ${{ object.copay }} {% else %} Not specified {% endif %} |
| Deductible: | {% if object.deductible %} ${{ object.deductible }} {% else %} Not specified {% endif %} |
| Created: | {{ object.created_at|date:"M d, Y H:i" }} |
| Last Updated: | {{ object.updated_at|date:"M d, Y H:i" }} |
Insurance policy was added to patient record
{{ object.created_at|date:"M d, Y H:i" }}Insurance information was modified
{{ object.updated_at|date:"M d, Y H:i" }}| DOB: | {{ object.patient.date_of_birth|date:"M d, Y" }} |
| Age: | {{ object.patient.age }} years |
| Gender: | {{ object.patient.get_gender_display }} |
| Phone: | {% if object.patient.phone_number %} {{ object.patient.phone_number }} {% else %} Not provided {% endif %} |
No other insurance policies
{% endfor %}