{% extends '@App/partials/base_light.html.twig' %} {% block styles %} {{ parent() }} {% endblock %} {% block content %} {% set pageStyle = { bgColor: '#ffffff', bgImageUrl: '' } %} {% if presentation %} {% for b in presentation.projetBlocks %} {% if b.type == 'page_style' %} {% set pageStyle = b.data %} {% endif %} {% endfor %} {% endif %} {% set heroImage = presentation and presentation.background ? asset('uploads/projets/presentations/' ~ presentation.background) : '' %}
Proposition de partenariat

{{ projet ? projet.titre : 'Projet' }}

Proposé par
{{ proposition.createdBy ? proposition.createdBy.prenom ~ ' ' ~ proposition.createdBy.nom : '-' }}
Statut
{{ proposition.statut }}
Entité
{{ proposition.prospection and proposition.prospection.mecene ? proposition.prospection.mecene.nom : '-' }}
Proposition
#{{ proposition.idtoken|slice(0, 6) }}
{% if presentation %} {% for block in presentation.projetBlocks|sort((a,b)=> a.position <=> b.position) %} {% if block.type == 'formule' %} {# skip here, we'll show the proposition formula at the end #} {% elseif block.type == 'text' %} {% set titleColor = block.data.titleColor|default('#111827') %} {% set textColor = block.data.textColor|default('#374151') %} {% set backgroundColor = block.data.backgroundColor|default('#ffffff') %}
{% if block.data.titre ?? '' %}

{{ block.data.titre }}

{% endif %} {{ (block.data.text ?? '')|raw }}
{% elseif block.type == 'chiffres' %} {% set titleColor = block.data.titleColor|default('#ffffff') %} {% set textColor = block.data.textColor|default('#ffffff') %} {% set backgroundColor = block.data.backgroundColor|default('#111111') %}
{% set figures = block.data.figures ?? [] %} {% if figures is not empty %}

{{ block.data.titre ?? '' }}

{{ (block.data.text ?? '')|raw }}
{% for fig in figures %}
{{ fig.value ?? '' }}
{{ fig.label ?? '' }}
{% endfor %}
{% endif %}
{% elseif block.type == 'image' %} {% set imageUrl = block.data.imageUrl ?? '' %} {% if imageUrl %}
Image du projet
{% endif %} {% elseif block.type == 'description' %} {% set textColor = block.data.textColor|default('#374151') %} {% set backgroundColor = block.data.backgroundColor|default('#ffffff') %} {% if block.data.imageUrl is defined %} {% if block.data.imageUrl == '' %} {% set imageUrl = block.data.url %} {% else %} {% set imageUrl = block.data.imageUrl %} {% endif %} {% endif %}
{% if imageUrl %}
Illustration projet
{% endif %}
{{ (block.data.text ?? '')|raw }}
{% elseif block.type == 'partenaire' %} {% include '@Projet/projet/presentation/preview/block/partenaire.html.twig' %} {% endif %} {% endfor %} {% endif %}

Formule proposée

{% if formule %} {% include '@Projet/projet/presentation/preview/block/formule_proposition.html.twig' %}
{% else %}
Formule indisponible.
{% endif %}
{% endblock %}