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

User Complain

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