{% extends 'layouts/base.html' %} {% load i18n %} {% block title %}{{ section.name_en }} - {% trans "Org Section" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Departments" %} {{ section.department.get_localized_name }} {{ section.name_en }}

{{ section.name_en }}

{% if section.name_ar %}

{{ section.name_ar }}

{% endif %}
{% if section.code %} {{ section.code }} {% endif %} {{ section.get_location_type_display }} {% if section.sub_location %} {{ section.sub_location }} {% endif %} {% if section.floor %} {% trans "Floor" %} {{ section.floor }} {% endif %} {{ section.department.get_localized_name }}

{% trans "Sub-Sections" %}

{{ sub_sections_count }}

{% trans "Sub-Sections" %}

{% trans "Add Sub-Section" %}
{% for sub in sub_sections %} {% empty %} {% endfor %}
{% trans "Name (EN)" %} {% trans "Name (AR)" %} {% trans "Code" %} {% trans "Status" %} {% trans "Actions" %}
{{ sub.name_en }} {{ sub.name_ar|default:"-" }} {{ sub.code|default:"-" }} {% if sub.status == 'active' %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}

{% trans "No sub-sections found" %}

{% endblock %}