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

Between Dates Report

{% csrf_token %}
{% if lodgedcomplaints %}

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

{% include 'includes/messages.html' %} {% for i in lodgedcomplaints %} {% endfor %}
# Complaint No Complainant Name Complainant Mobile Number Complaint Lodged Date Status Action
{{ forloop.counter }} {{i.complaint_number}} {{ i.userregid.admin.first_name }} {{ i.userregid.admin.last_name }} {{i.userregid.mobilenumber}} {{i.complaintdate_at}} {% if i.status == '0' %} Not Processed Yet {% elif i.status == 'Inprocess' %} In Process {% elif i.status == 'Closed' %} Closed {% endif %} View
{% endif %}
{% endblock %}