{% extends "base.html" %} {% load static %} {% block content %}

Our Featured Authors

{% if authors_json %} {% for profile in page_obj %}
{{ profile.name }}

{{ profile.name }}

{{ profile.affilation|default:"Not specified" }}

{{ profile.description }}

View blogs
{% endfor %} {% else %}

No authors found

Try adjusting your search criteria

{% endif %}
{% if page_obj.paginator.num_pages >= 1 %}
{% if page_obj.has_previous %} « First « {% else %} « First « {% endif %} {% for i in page_obj.paginator.page_range %} {% if page_obj.number == i %} {{ i }} {% elif i > page_obj.number|add:'-3' and i < page_obj.number|add:'3' %} {{ i }} {% elif i == page_obj.number|add:'-3' or i == page_obj.number|add:'3' %} ... {% endif %} {% endfor %} {% if page_obj.has_next %} » Last » {% else %} » Last » {% endif %}
{% endif %}
{% endblock %}