{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Delete Source User" %} - {{ source.name_en }}{% endblock %} {% block content %}

{% trans "Delete Source User" %}

{{ source.name_en }}

{% trans "Back to Source" %}
{% trans "Confirm Deletion" %}
{% trans "Warning:" %} {% trans "This action cannot be undone!" %}

{% trans "Are you sure you want to remove the following source user?" %}

{% trans "User" %}:
{{ source_user.user.email }} {% if source_user.user.get_full_name %}
{{ source_user.user.get_full_name }} {% endif %}
{% trans "Source" %}:
{{ source.name_en }}
{% trans "Status" %}:
{% if source_user.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}
{% trans "Permissions" %}:
{% if source_user.can_create_complaints %} {% trans "Complaints" %} {% endif %} {% if source_user.can_create_inquiries %} {% trans "Inquiries" %} {% endif %} {% if not source_user.can_create_complaints and not source_user.can_create_inquiries %} {% trans "None" %} {% endif %}
{% trans "The user will lose access to the source dashboard and will not be able to create complaints or inquiries from this source." %}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}