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

{% trans "Delete Source" %}

{% trans "Confirm deletion of standard source" %}

{% action_icon "back" %} {% trans "Back to Sources" %}
{% action_icon "warning" %} {% trans "Warning:" %} {% trans "This action cannot be undone." %}
{% trans "Are you sure you want to delete this source?" %}
{% trans "Code" %} {{ source.code }}
{% trans "Name" %} {{ source.name }}
{% trans "Arabic Name" %} {{ source.name_ar|default:"-" }}
{% trans "Description" %} {{ source.description|default:"-" }}
{% trans "Website" %} {% if source.website %} {{ source.website }} {% else %} - {% endif %}
{% csrf_token %}
{% trans "Cancel" %}
{% trans "Impact" %}

{% trans "Deleting this source will affect:" %}

  • {% trans "All standards linked to this source" %}
  • {% trans "Compliance records for those standards" %}
  • {% trans "Any reports or analytics using this data" %}

{% trans "Consider:" %} {% trans "You may want to mark this source as inactive instead of deleting it." %}

{% endblock %}