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

{% trans "Delete Source" %}

{{ source.name_en }}

{% trans "Cancel" %}
{% trans "Confirm Deletion" %}

{% trans "Warning" %}

{% trans "Are you sure you want to delete this source? This action cannot be undone." %}

{% trans "Name (English)" %} {{ source.name_en }}
{% trans "Name (Arabic)" %} {{ source.name_ar|default:"-" }}
{% trans "Description" %} {{ source.description|default:"-"|truncatewords:20 }}
{% trans "Status" %} {% if source.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}
{% trans "Usage Count" %} {% if usage_count > 0 %} {{ usage_count }} {% else %} 0 {% endif %}
{% if usage_count > 0 %}
{% trans "Cannot Delete" %}

{% trans "This source has been used in {{ usage_count }} record(s). You cannot delete sources that have usage records." %}

{% trans "Recommended action:" %} {% trans "Deactivate this source instead by editing it and unchecking the 'Active' checkbox." %}

{% endif %}
{% csrf_token %} {% if usage_count == 0 %} {% else %} {% endif %} {% trans "Cancel" %}
{% endblock %}