{% extends 'base.html' %} {% block title %}Profils de locaux{% endblock %} {% block content %}

Profils de locaux

Des propositions réutilisables, jamais des créations automatiques.

Nouveau profil
{% for profile in profiles %}

{{ profile.name }}

{{ profile.description or 'Aucune description.' }}

{{ profile.items|length }} proposition(s){% if profile.room_type %} · {{ profile.room_type.name }}{% endif %}
{% else %}
Aucun profil. Vous pouvez créer des locaux sans profil et compléter plus tard.
{% endfor %}
{% endblock %}