{% extends 'admin/layout.html.twig' %} {% block title %}Administration site Internet - EDIFIA WEB{% endblock %} {% block content %} {% autoescape false %}

{{ 'user.rank.page_title'|trans({}, 'admin') }}

{% if users is defined and users is iterable %} {% for user in users %} {% endfor %} {% endif %}
{{ 'user.label.id'|trans({}, 'admin') }} {{ 'user.label.firstname'|trans({}, 'admin') }} {{ 'user.label.lastname'|trans({}, 'admin') }} {{ 'user.label.username'|trans({}, 'admin') }} {{ 'user.label.email'|trans({}, 'admin') }} {{ 'user.label.last_connection'|trans({}, 'admin') }} {{ 'user.label.rank'|trans({}, 'admin') }} {{ 'user.label.points'|trans({}, 'admin') }} {{ 'user.label.actions'|trans({}, 'admin') }}
{{ user.id }} {{ user.firstname }} {{ user.lastname }} {{ user.username }} {{ user.email }} {{ (user.lastConnectionAt is defined and user.lastConnectionAt is not null) ? user.lastConnectionAt|date('d/m/Y H:i') : '-' }} {{ user.rank }} {{ user.points }} {{ 'button.edit'|trans({}) }} {{ 'button.stats'|trans({}) }} {{ 'button.delete'|trans({}) }}
{% endautoescape %} {% endblock %}