{% extends "profiles/base_profile.html" %} {% load i18n pagination_tags %} {% block title %}Profiles{% endblock %} {% block article %} {% if object_list %} {% autopaginate object_list 10 %}

Page: {{ page_obj.number }} / {{ paginator.num_pages }}

{% for object in object_list %}
{% include "profiles/_profile_list.html" %}
{% endfor %} {% else %}

{% trans 'Not found any record.' %}

{% endif %} {% endblock %}