+
{{ "phraseanet::account: Are you sure you want to delete your account?" | trans }}
+
{{ "phraseanet::account: List of data to be deleted" | trans }}
+
+ {% if baskets|length > 0 %}
+ - {{ 'Paniers' | trans }}
+
+ {% for basket in baskets %}
+ - {{ basket.getName() }}
+ {% endfor %}
+
+ {% endif %}
+
+ {% if api_accounts|length > 0 %}
+ - {{ "My application " | trans }}
+
+ {% for api_account in api_accounts %}
+ - {{ api_account.getApplication().getName() ~ " => Client_id: " ~ api_account.getApplication().getClientId() }}
+ {% endfor %}
+
+ {% endif%}
+
+ - {{ "phraseanet::account: My phraseanet account" | trans }}
+
+ - Name : {{ user.getFirstName() ~ ' ' ~ user.getLastName() }}
+ - Login : {{ user.getLogin() }}
+
+