{% extends 'base.html.twig' %} {% block title %}Select - Design System - Bubul{% endblock %} {% block body %}
{% verbatim %}{% include '_atoms/form/select.html.twig' with {
label: 'Pays',
placeholder: 'Sélectionnez un pays',
options: [
{value: 'fr', label: 'France'},
{value: 'be', label: 'Belgique'}
],
value: 'fr'
} %}{% endverbatim %}
Fichier : templates/_atoms/form/select.html.twig
| Paramètre | Type | Description |
|---|---|---|
options | array | [{value, label, disabled?}] |
value | string | Valeur sélectionnée |
placeholder | string | Option placeholder |
label | string | Label du select |
size | string | sm, md, lg |
disabled | bool | Désactivé |
error | string | Message d'erreur |
hint | string | Texte d'aide |