{% extends "base.html" %} {% block title %}Bâtiments — GMAO Collège{% endblock %} {% block content %}

Bâtiments

Nouveau bâtiment
Sites
{% for site in sites %}{{ site.name }} · {{ site.site_type|replace('_',' ') }}{% else %}Aucun site défini.{% endfor %}
{% for building in buildings %}
{{ building.name }}
{{ building.site.name if building.site else 'Site non renseigné' }}

{{ building.description or '' }}

{{ building.rooms.count() }} salle(s)

{% endfor %}
{% endblock %}