producer.html.twig 571 Bytes
Newer Older
1 2 3
{% extends '@kohinos/common/layout.html.twig' %}

{% block content %}
Yvon committed
4
    {# Check if review mode to adapt title #}
5
    {% if form.admin_edit is defined %}
Yvon committed
6
        <h1>Revue auto-évaluation producteur {{ prestataire.raison }}</h1>
7 8
    {% elseif form.presta_edit_after_definitive_submission is defined %}
        <h1>Correction du questionnaire d'auto-évaluation</h1>
Yvon committed
9 10 11
    {% else %}
        <h1>Inscription point de vente (2/2) : auto-évaluation</h1>
    {% endif %}
Yvon committed
12
    <br/>
13
    <br/>
14
    {% include '@kohinos/tav/prestaquiz/producer_core.html.twig' %}
15
{% endblock %}