{% extends "idios/base.html" %} {% load i18n %} {% load account_tags %} {% load pagination_tags %} {% block head_title %}{% trans "All Profiles" %}{% endblock %} {% block body %}

{% trans "All Profiles" %}

{% autopaginate users %} {% for user in users %}
{% user_display user %}
{% if user.get_profile.location %}{{ user.get_profile.location }}{% endif %} {% if user.get_profile.location and user.get_profile.website %}•{% endif %} {% if user.get_profile.website %}{{ user.get_profile.website }}{% endif %}
{% endfor %} {% paginate %} {% endblock %}