{{ _("Select a role and enable or disable it for users.") }}
{# Copyright (C) 2024 I-Form. invenio-theme-iform 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 "invenio_administration/base.html" %} {% block admin_page_content %}
| {{ _("Email") }} | {{ _("Active") }} | {{ _("Has Role?") }} | {{ _("Actions") }} |
|---|---|---|---|
| {{ user.email }} |
{% if user.active %}
{{ _("Active") }}
{% else %}
{{ _("Inactive") }}
{% endif %}
|
{% set has_role = selected_role in user.roles %}
{% if has_role %} {% else %} {% endif %} | |
| {{ _("No users found.") }} | |||