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

Between Dates Report

{% csrf_token %}
{% if datarecords %}

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

{% for i in datarecords %} {% if i.status == '2' %} {% else %} {% endif %} {% endfor %} {% endif %}
S.No Full Name Profession Mobile Number Status Action
{{ forloop.counter }} {{ i.fullname }} {{ i.profession }} {{ i.mobilenumber }} Private Public
{% endblock %}