{% 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 }}

{% if profile.comment %}
{{ profile.comment }} 
{% else %}
{% trans %}No profile description{% endtrans %} 
{% endif %}
{{ macros.profile_status(profile) }}
{% endfor %}
{% endblock %}