{% extends 'admin/base.html.twig' %} {% block title %}{{ 'app.admin.users.title'|trans }}{% endblock %} {% block body %} {{ include('admin/partials/page_title.html.twig', { 'icon': "", 'title': 'app.admin.users.title'|trans }) }}
| Picture | Username | Roles | IsVerified | Actions | ||
|---|---|---|---|---|---|---|
| {{ user.username }} | {% for role in user.roles %}{{ role }}{% endfor %} | {{ user.email }} | {{ user.isVerified ? 'Yes' : 'No' }} | {% if app.user.id != user.id %} {{ include('admin/user/_delete_form.html.twig') }} {% endif %} | ||
| no records found | ||||||