{% extends 'adminsection/base.html' %} {% load static %} {% block content %}

Search Appointment

Search Appointment / Name / Contact number:


{% if appointment_list %}

Result against "{{ query }}" keyword

{% for appointment in appointment_list %} {% endfor %} {% else %} {% if query %} {% endif %} {% endif %}
# Appointment Number Name Mobile Number Appointment Date Appointment Time Action
{{ forloop.counter }} {{ appointment.AppointmentNumber }} {{ appointment.Name }} {{ appointment.PhoneNumber }} {{ appointment.AppoinmentDate }} {{ appointment.AppoinmentTine }} View
No record found against this search
{% endblock %}