{% extends "base.html" %} {% block title %}{% trans %}My account{% endtrans %}{% endblock %} {% block subtitle %}{% trans %}my profiles{% endtrans %}{% endblock %} {% block content %}
{% if not service %} {% endif %} {% for profile in current_user.profiles %} {% endfor %}
{% trans %}Service{% endtrans %}{% trans %}Profile username{% endtrans %} {% trans %}Owned by{% endtrans %} {% trans %}Status{% endtrans %} {% trans %}Created on{% endtrans %}
{{ profile.service.name }} {{ profile.username }} {{ profile.user.username }} {{ profile.status }} {{ profile.created_at.date() }}
{% endblock %}