{% extends "base.app.html" %} {% block content-title %}People{% endblock%} {% block content %}



Role Filter

    {% for role in roles %}
  • {{role.name}}
  • {% endfor %}

{% if people_list %} {% for people in people_list %}
{{people.address}} - {{people.role.name }}

{% endfor %} {% endif %}

{% if people_list.has_previous %} previous {% endif %} Page {{ people_list.number }} of {{ people_list.paginator.num_pages }}. {% if people_list.has_next %} next {% endif %}


{% csrf_token %}
manage roles {% endblock%} {% block extrajs %} {% endblock%}