{# -*- coding: utf-8 -*- Copyright (C) 2024 TU Wien. Invenio Theme TUW is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {%- extends config.BASE_TEMPLATE %} {%- block page_body %}

{{ _("Users") }}

{%- for user_info in user_infos %} {%- set user = user_info.user %} {%- set curation_icon = "✅" if user_info.curation_consent else "❌" %} {%- set user_class = "trusted" if user_info.trusted else "untrusted" %} {%- endfor %}
ID Full name Curation 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 %}