{% extends "jury/base.html.twig" %} {% import "jury/jury_macros.twig" as macros %} {% block title %}User {{ user.userid }} - {{ parent() }}{% endblock %} {% block extrahead %} {{ parent() }} {{ macros.table_extrahead() }} {% endblock %} {% block content %}
| ID | {{ user.userid }} | |
|---|---|---|
| External ID | {{ user.externalid }} | |
| Login | {{ user.username }} | |
| {% if user.email %} {{ user.email }} {% else %} - {% endif %} | ||
| Password | {% if user.password %} Set {% else %} Not set {% endif %} | |
| IP address | {% if user.ipAddress %} {{ user.ipAddress }} {% else %} - {% endif %} | |
| Enabled | {{ user.enabled | printYesNo }} | |
| Roles |
{% for role in user.userRoles %}
{{ role.description }} {% else %} No roles assigned {% endfor %} |
|
| Team | {% if user.team %}{{ user.team.effectiveName }} {{ user.team | entityIdBadge('t') }} | {% else %}- | {% endif %}
| First login | {% if user.firstLogin %} {{ user.firstLogin | printtime('D d M Y H:i:s T') }} {% else %} - {% endif %} |
|---|---|
| Last login | {% if user.lastLogin %} {{ user.lastLogin | printtime('D d M Y H:i:s T') }} {% else %} - {% endif %} |
| Last API login | {% if user.lastApiLogin %} {{ user.lastApiLogin | printtime('D d M Y H:i:s T') }} {% else %} - {% endif %} |
| Last IP | {% if user.lastIpAddress %} {{ user.lastIpAddress | printHost(true) }} {% else %} - {% endif %} |