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

{% trans "Delete Standard" %}

{{ standard.code }} - {{ standard.title }}

{% trans "Warning: This action cannot be undone" %}

{% trans "Deleting this standard will permanently remove it from the system along with all associated compliance records and attachments." %}

{% trans "Are you sure you want to delete this standard?" %}

{% trans "Standard Code" %}
{{ standard.code }}
{% trans "Title" %}
{{ standard.title }}
{% trans "Source" %}
{{ standard.source.name }}
{% trans "Category" %}
{{ standard.category.name }}
{% trans "Department" %}
{% if standard.department %} {{ standard.department.name }} {% else %} {% trans "All Departments" %} {% endif %}
{% trans "Compliance Records" %}
{{ standard.compliance_records.count }} {% trans "records" %}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}