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

{{ title }}

Un profil propose des équipements et ouvrages. Rien n’est créé avant validation.

{% if profile %}
Équipements proposés
{% for item in profile.items %}{% else %}{% endfor %}
PropositionQuantitéModeActions
{{ item.label }}{% if item.category %} · {{ item.category.name }}{% endif %}
{{ 'Groupe' if item.is_group else 'Individuel' }}
Aucune proposition.
Composition facultative
{% for surface in profile.surfaces %}
{{ surface.label or surface.surface_type }} — {{ surface.material }}{% if surface.finish %} + {{ surface.finish }}{% endif %}
{% endfor %}
{% endif %}
{% endblock %}