{% extends "admin_base.html" %} {% load custom_filters %} {% load static %} {% block content %}
{% for author in contents|dictsort:"name" %} {% endfor %}
SN Author Name Status Actions
{{ forloop.counter }}
{% if author.image %} {{ author.name }} {% else %}
{{ author.name|first|upper }}
{% endif %}
{{ author.name }}
{% if author.role %}
{{ author.role }}
{% endif %}
{% if author.status == 3 %} Verified {% elif author.status == 2 %} Unverified {% elif author.status == 1 %} User Submitted {% endif %}
Edit
{% if not contents %}

No authors found

Try adjusting your search or add a new author

{% endif %}
{% if contents.has_previous %} {% else %} {% endif %} Page {{ contents.number }} of {{ contents.paginator.num_pages }} {% if contents.has_next %} {% else %} {% endif %}
{% endblock %}