{% extends 'layouts/base.html' %} {% load static %} {% load accounts_tags %} {% block title %}Departments - Management{% endblock %} {% block extra_css %} {% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{% if can_add_departments %} Add Department {% endif %}
{% for department in departments %}
{{ department.name }}

{{ department.code }}

{% if department.is_active %}Active{% else %}Inactive{% endif %} {% if department.head %} Head: {{ department.head.get_full_name }} {% endif %}
{{ department.users.count }}
Users
{{ department.children.count }}
Sub-departments
{% if department.description %}

{{ department.description|truncatewords:15 }}

{% endif %}
Last updated: {{ department.updated_at|timesince }} ago
{% empty %}
No departments found

No departments match your current filters or none have been created yet.

{% if can_add_departments %} Create First Department {% endif %}
{% endfor %}
{% if is_paginated %}
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}