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

{% if editMode %} {% trans %}Modifier une image{% endtrans %} {% else %} {% trans %}Ajouter une image{% endtrans %} {% endif %}

Français

{{ form_row(formCategoryImage.title, {'label': "Titre :", 'attr': {'placeholder': "Ex.: Avoriaz - 2023", 'class': 'form-control'}})}}
{{ form_label(formCategoryImage.display, 'L\'image est-elle visible ? :', {'label_attr': {'class': 'status'}})}} {{ form_widget(formCategoryImage.display, {'attr': {'class': 'form-check-inline '}})}}
{{ form_row(formCategoryImage.category, {'label': "Catégorie :", 'attr': {'placeholder': "Choisir une catégorie", 'class': 'form-control'}})}}
{{ form_row(formCategoryImage.ranking, {'label': "Position :", 'attr': {'placeholder': "Position de l'image", 'class': 'form-control'}})}}
{{ form_row(formCategoryImage.altText, {'label': "Texte alternatif :", 'attr': {'placeholder': "Ex.: Image d'un skieur", 'class': 'form-control'}})}}
{{ form_row(formCategoryImage.imageFile, {'label': "Image (en format jpeg, png ou svg) :", 'attr': {'placeholder': "Image"}})}}
{% if editMode %}
{% if categoryImage.imageName %}
{% trans %}Image actuelle{% endtrans %}
{% endif %}
{% endif %}

English

{{ form_row(formCategoryImage.etitle, {'label': "Titre :", 'attr': {'placeholder': "Ex.: Morzine - 2020",'class': 'form-control'}})}}
{{ form_row(formCategoryImage.ealtText, {'label': "Texte alternatif :", 'attr': {'placeholder': "Ex.: Image d'un skieur", 'class': 'form-control'}})}}
{{ form_errors(formCategoryImage) }}
{% include 'base/save_button.html.twig' %} {% trans %}Annuler{% endtrans %}
{{ form_end(formCategoryImage) }}
{% endblock %}