{% extends 'userena/base_userena.html' %} {% load i18n %} {% load url from future %} {% block content_title %}
{% trans 'Profiles' %}
{% endblock %} {% block content %}
{% for profile in profile_list %}
{{ profile.user.username }}
{% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %}
{% trans 'previous' %}
{% endif %}
{% trans 'Page' %} {{ page_obj.number }} {% trans 'of' %} {{ page_obj.paginator.num_pages }}.
{% if page_obj.has_next %}
{% trans 'next' %}
{% endif %}
{% endif %} {% endblock %}