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

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

Français

{{ form_row(formCategoryText.category, {'label': "Nom de la catégorie :", 'attr': {'placeholder': "", 'class': 'form-control'}})}}
{{ form_row(formCategoryText.title, {'label': "Titre :", 'attr': {'placeholder': "Ex.: Tu aimes le ski ?", 'class': 'form-control'}})}}
{{ form_row(formCategoryText.text, {'label': "Description :", 'attr': {'placeholder': "Description des services offerts (formater le texte tel qu'il apparaîtra sur le site)...", 'class': 'form-control', 'id': "editor"}})}}
{{ form_row(formCategoryText.button, {'label': "Texte du bouton :", 'attr': {'placeholder': "Ex. : Voir plus", 'class': 'form-control'}})}}
{{ form_row(formCategoryText.link, {'label': "Lien vers la page...", 'attr': {'placeholder': "Ex. : parapente", 'class': 'form-control'}})}}

English

{{ form_row(formCategoryText.etitle, {'label': "Titre :", 'attr': {'placeholder': "Titre de la page", 'class': 'form-control'}})}}
{{ form_row(formCategoryText.etext, {'label': "Description :", 'attr': {'placeholder': "Description bréve des services...", 'class': 'form-control', 'id': "editor"}})}}
{{ form_row(formCategoryText.ebutton, {'label': "Texte du bouton :", 'attr': {'placeholder': "Ex. : Voir plus", 'class': 'form-control'}})}}
{{ form_row(formCategoryText.elink, {'label': "Lien vers la page...", 'attr': {'placeholder': "Ex. : parapente", 'class': 'form-control'}})}}
{{ form_errors(formCategoryText) }}
{% include 'base/save_button.html.twig' %} {% trans %}Annuler{% endtrans %}
{{ form_end(formCategoryText) }}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('text_editor') }} {% endblock %}