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

{% trans "Delete Department" %}

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

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