{% load static %} HealthStack {% if user.is_authenticated %}
{% include 'doctor-navbar.html' %}
{% include 'doctor-sidebar.html' %}
patient
Next Day Appoinment

{{next_days_appointment}}

{{next_date}}

Patient
Today Patient

{{today_patient_count.count}}

{{current_date}}

Patient
Total Appoinments

{{total_appointments_count.count}}

{{current_date}}

Patient Appoinment

{% comment %}
{% for appointment in appointments %} {% endfor %}
Patient Name Appt Date Purpose Contact Payment Status Appoinment Status

User Image {{appointment.patient.name}}#PT{{appointment.serial_number}}

{{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 %}
{% endcomment %}
{% for today in today_appointments %} {% endfor %}
Patient Name Appt Date Purpose Contact Status

User Image {{today.patient.name}}#PT{{today.serial_number}}

{{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 %}
{% include 'footer.html' %}
{% else %}

You are not logged in

{% endif %} {% if messages %} {% endif %}