Patient Check-In
Appointment Details
Patient:
{{ appointment.patient.first_name }} {{ appointment.patient.last_name }}
Patient ID:
{{ appointment.patient.patient_id }}
DOB:
{{ appointment.patient.date_of_birth|date:"M d, Y" }}
Phone:
{{ appointment.patient.phone_number|default:"Not provided" }}
Date:
{{ appointment.appointment_date|date:"M d, Y" }}
Time:
{{ appointment.appointment_time|time:"g:i A" }}
Provider:
{{ appointment.provider.first_name }} {{ appointment.provider.last_name }}
Department:
{{ appointment.department.name }}
Check-In Information
{% if messages %}
{% for message in messages %}
{% endfor %}
{% endif %}
Patient Information
Age:
{{ appointment.patient.age|default:"N/A" }}
Gender:
{{ appointment.patient.gender|default:"N/A" }}
Address:
{{ appointment.patient.address|default:"Not provided" }}
Emergency Contact:
{{ appointment.patient.emergency_contact|default:"Not provided" }}
Insurance Information
{% if appointment.patient.insurance_provider %}
{% else %}
Provider:
{{ appointment.patient.insurance_provider }}
Policy #:
{{ appointment.patient.insurance_policy_number }}
Group #:
{{ appointment.patient.insurance_group_number|default:"N/A" }}
No insurance information on file
{% endif %}Patient Alerts
{% if appointment.patient.allergies %}
Allergies: {{ appointment.patient.allergies }}
{% endif %}
{% if appointment.patient.medical_alerts %}
Medical Alerts: {{ appointment.patient.medical_alerts }}
{% endif %}
{% if not appointment.patient.allergies and not appointment.patient.medical_alerts %}
No alerts on file
{% endif %}