{% load crispy_forms_tags %}

School Departments

Organize staff into functional departments and keep structure clear.

{% if departments %}
{% for department in departments %}
Department #{{ department.id }}

{{ department.get_name_display }}

{% if department.description %}

{{ department.description|truncatechars:140 }}

{% else %}

No description provided.

{% endif %}
{{ department.staff_count|default:0 }}
Staff
{{ department.active_projects|default:0 }}
Projects
{% if department.created_at %} Created {{ department.created_at|date:"M d, Y" }} {% else %} Created recently {% endif %}
Active
{% endfor %}
{% else %}

No Departments Yet

Create departments to organize staff responsibilities and reporting lines.

{% endif %}