{# templates/admin/website_projet/index.html.twig #} {% extends 'layouts/admin_layout.html.twig' %} {% block content %}

Visibilité Site Web

Gestion des contenus pour le niveau d'accès "Visiteur".

Cliquez sur les images ou les switches pour piloter le site.
{% for projet in projets %} {# --- LIGNE PROJET --- #} {# --- LIGNES LOTS (Uniquement si images présentes) --- #} {% for lot in projet.lots %} {% set lotImages = docs['LOT_IMG'][lot.id] ?? docs['LOT'][lot.id] ?? [] %} {% if lotImages is not empty %} {% endif %} {% endfor %} {% endfor %}
Structure (Projet > Lot) & Images Visible sur Site Mis en Vedette
{{ projet.nom }}
{# Affichage du Type de Business (Enum) #} {% if projet.typeBusiness %} {{ projet.typeBusiness.value }} {% endif %}
{{ projet.localisationVille }} ({{ projet.localisationCommune }})
{% set projetImages = docs['PROJET_IMG'][projet.id] ?? docs['PROJET'][projet.id] ?? [] %} {% if projetImages is not empty %} {% for img in projetImages %} {{ _self.render_media_vignette(img) }} {% endfor %} {% else %} Aucune image projet {% endif %}
{{ _self.make_switch(projet.id, 'PROJET', 'visibility', projet.websiteVisibility) }} {{ _self.make_switch(projet.id, 'PROJET', 'vedette', projet.websiteVedette) }}
{{ lot.nomBien }} {{ lot.numeroLot }}
{% for img in lotImages %} {{ _self.render_media_vignette(img) }} {% endfor %}
{{ _self.make_switch(lot.id, 'LOT', 'visibility', lot.websiteVisibility) }} {{ _self.make_switch(lot.id, 'LOT', 'vedette', lot.websiteVedette) }}
{# --- MACROS --- #} {% macro make_switch(id, type, field, value) %}
{% endmacro %} {% macro render_media_vignette(img) %}
{% endmacro %} {% endblock %} {% block javascripts %} {% endblock %}