templates/inquiry/endscreen/modal.html.twig line 1

  1. {% if app.session.flashbag.peek('endscreen_modal')|length > 0 %}
        {% for flash in app.flashes('endscreen_modal') %}
            {% include 'inquiry/components/user_data_datalayer.html.twig' with { userData: flash.userData } %}
            {% include '_fragments/dialog.html.twig' with {
                'id': 'inquiry-dialog-endscreen',
                'dialog_header': '',
                'content': include('inquiry/endscreen/content.html.twig', {
                    'formType': flash.formType
                }),
                'open_on_load': true
            } %}
        {% endfor %}
    {% endif %}