{% include 'staff_user_badges.html' with user=user %}
{% if user.can_be_deleted_by_manager %}
{% else %}
{% endif %}
{% endfor %}
{% 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 %}