{% extends 'layouts/base.html' %} {% load i18n %} {% block title %}{% trans "Org Sections" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Manage organization sections" %}
| {% 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" %} |
||||||||