{% extends 'base.html.twig' %} {% block title %}Administration{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block titlePage %}

Administration : Mods

{% endblock %} {% block main %}
{{ form_start(form, { attr: { class: 'bulle bulle-all-col form-wrapper' } }) }}
{{ form_label(form.nom, "", { label_attr: { class: 'form-label' } }) }} {{ form_widget(form.nom, { attr: { class: 'form-input' } }) }} {{ form_errors(form.nom) }}
{{ form_label(form.version, "", { label_attr: { class: 'form-label' } }) }} {{ form_widget(form.version, { attr: { class: 'form-input' } }) }} {{ form_errors(form.version) }}
{{ form_label(form.uri, "", { label_attr: { class: 'form-label' } }) }} {{ form_widget(form.uri, { attr: { class: 'form-file' } }) }} {{ form_errors(form.uri) }}
{{ form_label(form.dependances, "", { label_attr: { class: 'form-label' } }) }} {{ form_widget(form.dependances, { attr: { class: 'form-tom-select-input', 'data-controller': 'tom-select', } } ) }} {{ form_errors(form.dependances) }}
{{ form_end(form) }}
{% endblock %}