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

{% trans "All Profiles" %}

{% autopaginate profiles %}
{% for profile in profiles %}
{% include "profiles/_profile_item.html" %}
{% if forloop.counter|divisibleby:"2" %}
{% endif %} {% empty %}
Sorry, no Profiles in this list!
{% endfor %}
{% paginate %} {% endblock %}