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

{% trans "Delete Source" %}

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

{% 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 %}