{% extends 'base.html' %} {% block content %}

Between Dates Report

{% csrf_token %}
{% if messages %} {% for message in messages %} {% if message.tags == 'error' %} {% endif %} {% endfor %} {% endif %} {% if messages %} {% for message in messages %} {% if message.tags == 'success' %} {% endif %} {% endfor %} {% endif %}
{% if patient %}

Data Between: "{{ start_date }} to {{ end_date }}"

{% for i in patient %} {% if i.status == '0' %} {% else %} {% endif %} {% endfor %}
Appointment Number Patient Name Date of Appointment Time of Appointment Creation Date Status Action
{{i.appointmentnumber}} {{i.fullname}} {{i.date_of_appointment}} {{i.time_of_appointment}} {{i.created_at}}Not Updated Yet{{ i.status}}
{% endif %}
{% endblock %}