{% extends 'base.html' %} {% block content %}
| # | 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. | |||||