{% extends 'base.html.twig' %} {% block title %}Просмотр пользователя{% endblock %} {% block body %}
← к списку
Id {{ user.id }}
Username {{ user.username }}
Roles {% for role in user.roles %} {{ role }},
{% endfor %}
Password {{ user.password }}
Active {{ user.active ? 'Yes' : 'No' }}
Правка {{ include('user/_delete_form.html.twig') }}
{% endblock %}