{% extends "base.html" %} {% block content %}

{{ title }}

{{ form.hidden_tag() }}
{{ form.name.label(class="form-label") }}{{ form.name(class="form-control") }}
{{ form.description.label(class="form-label") }}{{ form.description(class="form-control", rows=3) }}
{{ form.is_teaching(class="form-check-input", role="switch", style="width: 3rem; height: 1.5rem; cursor: pointer;") }}
Salle utilisée pour l'enseignement (affichée dans les plannings Pronote)
{{ form.color.label(class="form-label") }}{{ form.color(class="form-select") }}
Annuler
{% if room_type %}
Salles de ce type
{% if rooms_in_type %}
{% for room in rooms_in_type %} {% endfor %}
NomBâtimentÉtageActions
{{ room.name }} {{ room.building.name }} {{ room.floor }}
{% else %}

Aucune salle associée à ce type.

{% endif %}
Ajouter des salles
{% if rooms_without_type %}
Maintenez Ctrl pour sélectionner plusieurs salles
{% else %}

Toutes les salles sont déjà associées à un type.

{% endif %}
{% endif %}
{% endblock %}