{% extends '/layout/admin_layout.html.twig' %} {% import "user/macro.html.twig" as userMacro %} {% block title %}User {% endblock %} {% block content %}
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 : '-' }} |