{# SPDX-FileCopyrightText: 2024-2026 TU Wien. SPDX-License-Identifier: MIT #} {%- extends config.BASE_TEMPLATE %} {%- block page_body %}

{{ _("Users") }}

{%- for user_info in user_infos %} {%- set user = user_info.user %} {%- set user_class = "trusted" if user_info.trusted else "untrusted" %} {%- endfor %}
Overview of users in the system and select details about them.
ID Full name TISS Action
{{ user.id }} {{ user.user_profile.full_name or "—" | safe }} {%- if user_info.tiss_id %} {{ user_info.tiss_id }} {%- else %} — {%- endif %}
{%- if not user_info.trusted %} {%- else %} {%- endif %}
{%- endblock page_body %} {%- block css %} {{ super() }} {{ webpack['invenio-theme-tuw-user-infos.css'] }} {%- endblock css %}