{% extends 'layouts/base.html' %} {% load i18n %} {% block title %}{% trans "Sections" %} - PX360{% endblock %} {% block content %}
{% trans "Manage hospital sections and departments" %}
| {% trans "Name" %} | {% trans "Code" %} | {% trans "Department" %} | {% trans "Hospital" %} | {% trans "Head" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|
| {{ section.name }} | {{ section.code|default:"-" }} | {{ section.department.name }} | {{ section.department.hospital.name }} | {{ section.head|default:"-" }} | {% if section.status == 'active' %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} | |
|
{% trans "No sections found" %} |
||||||