{% extends "base.html" %} {% load i18n baseurl cleanhtml %} {% block content %}

{% trans "Profiles list" %}

{% for profile in object_list %} {% endfor %}
{% trans "Username" %} {% trans "First name" %} {% trans "Last name" %}

{{ profile.user.username|obfuscate }} {{ profile.user.first_name }} {{ profile.user.last_name }}
{% endblock %}