{% extends '/layout/admin_layout.html.twig' %} {% import "user/macro.html.twig" as userMacro %} {% block title %}User {% endblock %} {% block content %}

{{ user.type.singular }}

Edit {{ include('user/_delete_form.html.twig') }}
Username {{ user.username }}
Status {{ userMacro.statusBadge(user) }}
Created at {{ user.createdAt ? user.createdAt|dtz : '-' }} {% if user.createdBy %} by {{ user.createdBy.username }} {% endif %}
Updated at {{ user.updatedAt ? user.updatedAt|dtz : '-' }} {% if user.updatedBy %} by {{ user.updatedBy.username }} {% endif %}
Last activity at {{ user.lastActivityAt ? user.lastActivityAt|dtz : '-' }}
{% if user.isCustomer %}
{{ include('file/listing.html.twig') }}
{% endif %}
{% endblock %}