{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Delete Source" %}{% endblock %} {% block content %}
{{ source.name_en }}
{% 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 %} |
{% 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." %}