{% extends 'base.html' %} {% load static %} {% block title %}Appointment List{% endblock %} {% block content %}

{{ request.user.first_name }}'s Appointment/s

{% for apt in appointment %}
{{ apt.full_name }}

{{ apt.department }} Expert

{{ apt.qualification_name }}, {{ apt.institute_name }}

Available {{ apt.start_time }} to {{ apt.end_time }} in {{ apt.hospital_name }}

AT {{ apt.location }} Delete Appointment

{% endfor %}
{% endblock %}