{% extends 'base.html.twig' %} {% block title %}Radio - Design System - Bubul{% endblock %} {% block body %}
{# ===== HEADER ===== #}
Atomes / Form /

Radio

Boutons radio pour choix exclusifs

{# ===== USAGE ===== #}

Usage

{% verbatim %}{% include '_atoms/form/radio.html.twig' with {
    label: 'Option 1',
    name: 'choix',
    value: 'option1',
    checked: true
} %}{% endverbatim %}

Fichier : templates/_atoms/form/radio.html.twig

{# ===== GROUPE DE RADIOS ===== #}

Groupe de radios

{# Groupe simple #}

Choix du plan

{% include '_atoms/form/radio.html.twig' with { label: 'Gratuit', name: 'plan', value: 'free', checked: true } %} {% include '_atoms/form/radio.html.twig' with { label: 'Pro', name: 'plan', value: 'pro' } %} {% include '_atoms/form/radio.html.twig' with { label: 'Enterprise', name: 'plan', value: 'enterprise' } %}
{# Groupe avec hints #}

Fréquence de paiement

{% include '_atoms/form/radio.html.twig' with { label: 'Mensuel', name: 'freq', value: 'monthly', hint: '29€/mois' } %} {% include '_atoms/form/radio.html.twig' with { label: 'Annuel', name: 'freq', value: 'yearly', hint: '290€/an (2 mois offerts)', checked: true } %}
{# ===== VARIANTE CARD ===== #}

Variante Card

{% include '_atoms/form/radio.html.twig' with { label: 'Plan Starter', hint: 'Idéal pour débuter - 0€/mois', name: 'pricing', value: 'starter', variant: 'card' } %} {% include '_atoms/form/radio.html.twig' with { label: 'Plan Pro', hint: 'Pour les équipes - 29€/mois', name: 'pricing', value: 'pro', variant: 'card', checked: true } %} {% include '_atoms/form/radio.html.twig' with { label: 'Plan Enterprise', hint: 'Sur mesure - Contactez-nous', name: 'pricing', value: 'enterprise', variant: 'card' } %}
{# ===== TAILLES ===== #}

Tailles

{% include '_atoms/form/radio.html.twig' with { label: 'Small (sm)', name: 'size_demo', value: 'sm', size: 'sm', checked: true } %} {% include '_atoms/form/radio.html.twig' with { label: 'Medium (md) - défaut', name: 'size_demo', value: 'md', size: 'md' } %} {% include '_atoms/form/radio.html.twig' with { label: 'Large (lg)', name: 'size_demo', value: 'lg', size: 'lg' } %}
{# ===== ÉTATS ===== #}

États

{% include '_atoms/form/radio.html.twig' with { label: 'Non sélectionné', name: 'state1', value: '1' } %} {% include '_atoms/form/radio.html.twig' with { label: 'Sélectionné', name: 'state2', value: '1', checked: true } %} {% include '_atoms/form/radio.html.twig' with { label: 'Obligatoire', name: 'state3', value: '1', required: true } %} {% include '_atoms/form/radio.html.twig' with { label: 'Désactivé', name: 'state4', value: '1', disabled: true } %} {% include '_atoms/form/radio.html.twig' with { label: 'Avec erreur', name: 'state5', value: '1', error: 'Veuillez sélectionner une option' } %}
{# ===== PARAMÈTRES ===== #}

Paramètres

Paramètre Type Description
labelstringTexte du label
namestringNom du groupe
valuestringValeur du radio
checkedboolÉtat sélectionné
variantstringdefault, card
sizestringsm, md, lg
hintstringTexte d'aide
disabledboolDésactivé
{% endblock %}