{% extends "traxauth/base.html" %} {% load i18n %} {% load traxauth_tags %} {% load pagination_tags %} {% block title %}{% trans "Profile List" %}{% if request.GET.page %} (page {{ request.GET.page }}){% endif %}{% endblock %} {% block breadcrumbs-box %} {{ block.super }} › {% trans "Profile List" %} {% endblock %} {% block coltype %}profile{% endblock %} {% block content_title %}

{% trans "Profile List" %}{% if request.GET.page %} (page {{ request.GET.page }}){% endif %}

{% endblock %} {% block content %}
{% if settings.TRAXAUTH_SHOW_PROFILES_LIST or user.is_authenticated %} {% autopaginate object_list 5 %} {% for profile in object_list %}

{% if settings.TRAXAUTH_ENABLE_GRAVATAR_SUPPORT %} {% gravatar_for_email profile.user.email %} {% endif %} {% firstof profile.user.get_full_name profile.user.username %}


{% endfor %}
{% paginate %}
{% else %}

You do not have permission to view the user list.

{% endif %}
{% endblock %}