{% extends "base.html" %} {% block title %}{% trans %}My account{% endtrans %}{% endblock %} {% block subtitle %}{% trans %}my profiles{% endtrans %}{% endblock %} {% block content %}
{% for service, profile in profiles %} {% set service = profile.service %} {% set status = profile.STATUSES[profile.status] %}

{{ service.name }} / {{ profile.username }}

{{ profile.comment or "No profile description" }}
{{ macros.profile_status(profile) }}
{% endfor %}
{% endblock %}