{% extends 'admin/layout/admin_app.html' %} {% block content %} {% if messages %} {% endif %}

Sub Admin

{% if 1 in actions %} {% endif %}
{% for subAdmin in subAdmins %} {% endfor %}
First Name Last Name Email Role Created At Status Action
{{ subAdmin.first_name }} {{ subAdmin.last_name }} {{ subAdmin.email }} {{ subAdmin.userprofile.role.name }} {{ subAdmin.date_joined }} {% if subAdmin.is_active %} Active {% else %} Inactive {% endif %} {% if 2 in actions %} {% endif %} {% if 3 in actions %} {% endif %} {% if 4 in actions %} {% endif %}
{% if subAdmins.has_other_pages %}
    {% if subAdmins.has_previous %} {% else %} {% endif %} {% for i in subAdmins.paginator.page_range %} {% if subAdmins.number == i %}
  • {{ i }}
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if subAdmins.has_next %} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block custom_js %} {% endblock %}