{% extends "base.html" %} {% block title %}{% trans %}My account{% endtrans %}{% endblock %} {% block subtitle %}{% trans %}my profiles{% endtrans %}{% endblock %} {% block content %}
{% for profile in current_user.profiles %} {% set status=profile.STATUSES[profile.status] %} {% endfor %}
{% trans %}Service{% endtrans %} {% trans %}Profile username{% endtrans %} {% trans %}Status{% endtrans %} {% trans %}Created on{% endtrans %} {% trans %}Comment{% endtrans %}
{{ profile.service.name }} {{ profile.username }} {{ status[1] }} {{ profile.created_at.date() }} {{ profile.comment }}
{% endblock %}