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

{% trans "Org Sections" %}

{% trans "Manage organization sections" %}

{% trans "Add Section" %}

{% trans "Filters" %}

{% trans "Sections List" %}

{% for section in sections %} {% empty %} {% endfor %}
{% trans "Name (EN)" %} {% trans "Name (AR)" %} {% trans "Code" %} {% trans "Department" %} {% trans "Location" %} {% trans "Champion" %} {% trans "Status" %} {% trans "Actions" %}
{{ section.name_en }} {{ section.name_ar|default:"-" }} {{ section.code|default:"-" }} {{ section.department.get_localized_name }} {{ section.get_location_type_display|default:"-" }} {{ section.champion.get_full_name|default:"-" }} {% if section.status == 'active' %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}

{% trans "No sections found" %}

{% if page_obj.has_other_pages %}
{% blocktrans with current=page_obj.number total=page_obj.paginator.num_pages %}{{ current }} of {{ total }}{% endblocktrans %}
{% if page_obj.has_previous %} {% endif %} {{ page_obj.number }} {% if page_obj.has_next %} {% endif %}
{% endif %}
{% endblock %}