{% trans_default_domain 'front_default' %} {% set customTemplate = 'front/' ~ websiteTemplate ~ '/actions/form/form-step/' ~ entity.slug ~ '.html.twig' %} {% set customTemplateExist = (customTemplate)|fileExist %} {% set formTemplate = customTemplateExist ? 'front/' ~ websiteTemplate ~ '/actions/form/form-step/' ~ entity.slug ~ '.html.twig' : 'front/' ~ websiteTemplate ~ '/actions/form/form-step/default.html.twig' %} {% set hasLayout = true %} {% set template = 'front/' ~ websiteTemplate ~ '/actions/form/include/elements.html.twig' %} {% set messages = app.session.flashbag.all %} {% set modalId = "form-thanks-modal-" ~ entity.id %} {% set contactsLength = entity.contacts|length %} {% set maxShipments = configuration.maxShipments %} {% set urlRedirectionI18n = configuration.pageRedirection|i18nUrl %} {% set urlRedirection = urlRedirectionI18n ? path('front_index', {'url': urlRedirectionI18n}) : null %} {% set publicationEnd = configuration.publicationEnd ? configuration.publicationEnd : null %} {% set inDeltaDate = not publicationEnd or 'now'|datetime <= publicationEnd %} {% set dispalyForm = not maxShipments and inDeltaDate or contactsLength < maxShipments and inDeltaDate %} {% set formClass = 'step-form-ajax' %} {% if configuration.recaptcha %} {% set formClass = formClass ~ ' recaptcha' %} {% endif %}