{% 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] %}
{{ status[1] | capitalize }}

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

{{ profile.comment or "No profile description" }} 
{% endfor %}
{% endblock %}