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

{% trans "Delete Category" %}

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

{% action_icon "back" %} {% trans "Back to Categories" %}
{% action_icon "warning" %} {% trans "Warning:" %} {% trans "This action cannot be undone." %}
{% trans "Are you sure you want to delete this category?" %}
{% trans "Order" %} {{ category.order }}
{% trans "Name" %} {{ category.name }}
{% trans "Arabic Name" %} {{ category.name_ar|default:"-" }}
{% trans "Description" %} {{ category.description|default:"-" }}
{% csrf_token %}
{% trans "Cancel" %}
{% trans "Impact" %}

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

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

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

{% endblock %}