{% extends 'layouts/base.html' %} {% load i18n %} {% block title %}{% trans "Delete Section" %} - PX360{% endblock %} {% block content %}

{% trans "Delete Section" %}

{% blocktrans %}Are you sure you want to delete {{ section.name }}? This action cannot be undone.{% endblocktrans %}

{% trans "Name" %} {{ section.name }}
{% trans "Code" %} {{ section.code|default:"-" }}
{% trans "Department" %} {{ section.department.name }}
{% trans "Status" %} {% if section.status == 'active' %}{% trans "Active" %}{% else %}{% trans "Inactive" %}{% endif %}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}