{% extends 'staff_base.html' %} {% load static %} {% block breadcrumb %} {{ block.super }} {% endblock %} {% block content %} {{ block.super }}
{% trans 'Import users' %} {% trans 'Merge users' %} {% trans 'Bulk update users' %} {% trans 'Create new user' %}
{% trans 'Inactive users' %}
{% for user in users %} {% endfor %}
{% trans 'Name' %} {% trans 'Email' %} {% trans 'Information' %} {% trans 'Actions' %}
{{ user.full_name }} {% if user.email %}{{ user.email }}{% endif %} {% include 'staff_user_badges.html' with user=user %} {% if user.can_be_deleted_by_manager %} {% else %} {% endif %}
{% endblock %} {% block modals %} {{ block.super }} {% trans 'Delete user' as title %} {% trans 'Do you really want to delete the user ?
This person will also be removed from every other user having this person as a delegated or CC-user.' as question %} {% trans 'Delete user' as action_text %} {% include 'confirmation_modal.html' with modal_id='deleteModal' title=title question=question action_text=action_text btn_type='danger' %} {% endblock %} {% block additional_javascript %} {% endblock %}