{% extends "admin_panel/base_page.html" %} {% load static %} {% block title %} Appointments {% endblock %} {% block head %} {% endblock %} {% block content %}

Appointments

Reset
{% if appointments %} {% for appointment in appointments %} {% endfor %} {% else %} {% endif %}
# Patient Name Patient Email Patient Phone Department Date Status
{{ forloop.counter }} {{ appointment.patient_name }} {{ appointment.patient_email }} {{ appointment.patient_phone }} {{ appointment.department.title }} {{ appointment.appointment_date }} {{ appointment.status|title }}
{% endblock %} {% block script %} {% endblock %}