Patient Dashboard
{% include 'message.html' %}
| Doctor |
Appt Date |
Type |
Amount |
Status |
Payment Status |
Action |
{% for appointment in appointments %}
|
|
{{appointment.date}}
{{appointment.time}}
|
{{appointment.appointment_type}} |
{% if appointment.appointment_type == 'checkup' %}
{{appointment.doctor.consultation_fee}} BDT |
{% else %}
{{appointment.doctor.report_fee}} BDT |
{% endif %}
{% if appointment.appointment_status == 'pending' %}
Pending
{% endif %}
{% if appointment.appointment_status == 'confirmed' %}
Confirm
{% endif %}
{% if appointment.appointment_status == 'cancelled' %}
Cancelled
{% endif %}
|
{% if appointment.payment_status == 'pending' %}
Pending
{% endif %}
{% if appointment.payment_status == 'VALID' %}
Paid
{% endif %}
|
{% if appointment.payment_status == 'pending' %}
{% else %}
Paid
{% endif %}
|
{% endfor %}
| Report ID |
Delivery Date |
Doctor |
Action |
{% for report in report %}
|
{{report.report_id}}
|
{{report.delivery_date }} |
|
|
{% endfor %}
| Doctor |
Tranx ID |
Tranx Date |
Amount |
Card Type |
Card Issuer |
Payment Status |
{% for payment in payments %}
|
|
{{payment.transaction_id}} |
{{payment.transaction_date}} |
{{payment.currency_amount}} BDT |
{{payment.card_type}} |
{{payment.card_issuer}} |
{% if payment.status == 'VALID' %}
Success
{% else %}
Pending
{% endif %}
|
{% endfor %}
{% include 'footer.html' %}
{% if messages %}
{% endif %}