{% extends "../base.html" %} {% load crispy_forms_tags %} {% block page_title %}School Settings{% endblock page_title %} {% block content %}

School Settings

Manage school configuration, sections, signatures, and departments.

Last updated: {% if school_settings and school_settings.updated_at %} {{ school_settings.updated_at|date:"M d, Y H:i" }} {% else %} Never {% endif %}
General Sections {{ school_sections|length|default:0 }} Signatures {{ signatures|length|default:0 }} Departments {{ departments|length|default:0 }}
{% include "./school_details.html" %}
{% include "./sections.html" %}
{% include "./signatures.html" %}
{% include "./departments.html" %}
{% endblock content%}