Patient Appoinment
{% comment %}
{% endcomment %}
| Patient Name | Appt Date | Purpose | Contact | Payment Status | Appoinment Status | |
|---|---|---|---|---|---|---|
|
{{appointment.date}} {{appointment.time}} | {{ appointment.appointment_type }} | {{appointment.patient.email}} Phone: {{appointment.patient.phone_number}} | {% if appointment.payment_status == 'pending' %} Pending {% endif %} {% if appointment.payment_status == 'VALID' %} Paid {% endif %} | {% if appointment.appointment_status == 'pending' %} Pending {% endif %} {% if appointment.appointment_status == 'confirmed' %} Confirmed {% endif %} {% if appointment.appointment_status == 'cancelled' %} Cancelled {% endif %} |
| Patient Name | Appt Date | Purpose | Contact | Status |
|---|---|---|---|---|
|
{{today.date}}{{today.time}} | {{ today.appointment_type }} | {{today.patient.email}} +91{{today.patient.phone_number}} | {% if today.appointment_status == 'pending' %} Pending {% endif %} {% if today.appointment_status == 'confirmed' %} Confirmed {% endif %} |