{% extends 'base/adminbase.html.twig' %} {% block title %} {% if editMode %} {% trans %}Modifier le bandeau{% endtrans %} {% else %} {% trans %}Ajouter un bandeau{% endtrans %} {% endif %} {% endblock %} {% block body %}
{{ form_start(formCta, {'attr': {'novalidate': 'novalidate'} }) }}

{% if editMode %} {% trans %}Modifier le bandeau{% endtrans %} {% else %} {% trans %}Ajouter un bandeau{% endtrans %} {% endif %}

Français

{{ form_row(formCta.title, {'label': "Titre :", 'attr': {'placeholder': "Ex.: Réserver une leçon", 'class': 'form-control'}})}}
{{ form_label(formCta.display, 'Le bandeau est-il visible sur le site ? :', {'label_attr': {'class': 'status'}})}} {{ form_widget(formCta.display, {'attr': {'class': 'form-check-inline'}})}}
{{ form_row(formCta.description, {'label': "Texte :", 'attr': {'placeholder': "Call to action bref mais efficace", 'class': 'form-control', 'id': "editor"}})}}
{{ form_row(formCta.button, {'label': "Bouton :", 'attr': {'placeholder': "Texte du bouton", 'class': 'form-control', 'id': "editor"}})}}
{{ form_row(formCta.link, {'label': "Lien :", 'attr': {'placeholder': "Inscrire le nom de la page après le / du url ", 'class': 'form-control', 'id': "editor"}})}}

English

{{ form_row(formCta.etitle, {'label': "Titre :", 'attr': {'placeholder': "Ex.: Book a lesson right away!!", 'class': 'form-control'}})}}
{{ form_row(formCta.edescription, {'label': "Texte :", 'attr': {'placeholder': "Un petit texte...", 'class': 'form-control', 'id': "editor"}})}}
{{ form_row(formCta.ebutton, {'label': "Bouton :", 'attr': {'placeholder': "Texte du bouton", 'class': 'form-control', 'id': "editor"}})}}
{{ form_row(formCta.elink, {'label': "Lien :", 'attr': {'placeholder': "Inscrire le nom de la page après le / du url ", 'class': 'form-control', 'id': "editor"}})}}
{{ form_errors(formCta) }}
{% include 'base/save_button.html.twig' %} {% trans %}Annuler{% endtrans %}
{{ form_end(formCta) }}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('text_editor') }} {% endblock %}