{% extends 'header.html' %} {% load static %} {% block content %}
Search People
{% comment %}

Margin utilities are the easiest way to add some structure to forms. They provide basic grouping of labels, controls, optional form text, and form validation messaging. We recommend sticking to margin-bottom utilities, and using a single direction throughout the form for consistency.

{% endcomment %}

Feel free to search all the members here with Ctrl+F

{% for i in members_list %} {% if i.user_type_id == 0 %} {% elif i.user_type_id == 1 %} {% elif i.user_type_id == 2 %} {% elif i.user_type_id == 3 %} {% elif i.user_type_id == 4 %} {% elif i.user_type_id == 5 %} {% endif %} {% endfor %}
Member ID Name State District City Mandal Email ID Designation User Type
{{ i.id }} {{ i.name }} {{ i.state }} {{ i.district }} {{ i.city }} {{ i.mandal }} {{ i.user.username }} {{ i.user.designation }}AdministratorState CoordinatorDistrict CoordinatorCity CoordinatorMandal CoordinatorMandal Member
{% endblock %}