{% extends 'base.html.twig' %} {% block title %}Choice Card - Design System - Bubul{% endblock %} {% block body %}
Carte de choix premium pour wizards et selections
Organisme utilise dans les wizards Moodia pour les selections importantes (type de generation, approche pedagogique). Design premium avec icone animee, features list, gradient hover et fleche directionnelle.
0
Molecules
1
Atome
4
Couleurs
11
Parametres
Atomes utilises
icon
- Icone principale, fleche, checks des features
{% verbatim %}{% include '_organisms/choice-card/choice-card.html.twig' with {
title: 'Importer un document',
description: 'Importez votre PDF et l\'IA analysera le contenu',
icon: 'document',
color: 'primary',
features: [
{ text: 'Structure automatique' },
{ text: 'Extraction des images' },
{ text: 'Génération de quiz' }
],
href: '/moodia/upload'
} %}{% endverbatim %}
Parametre : color
primary (defaut)
{% include '_organisms/choice-card/choice-card.html.twig' with { title: 'Importer un document', description: 'Importez votre PDF et l\'IA analysera le contenu', icon: 'document', color: 'primary', features: [ { text: 'Structure automatique' }, { text: 'Extraction des images' }, { text: 'Generation de quiz' } ], href: '#' } %}violet
{% include '_organisms/choice-card/choice-card.html.twig' with { title: 'Prompt libre', description: 'Decrivez votre cours et l\'IA le construira', icon: 'edit', color: 'violet', features: [ { text: 'Liberte totale' }, { text: 'Prompt personnalise' } ], href: '#' } %}Parametres : disabled, badge, badgeIcon
disabled: true, badge: 'Bientot'
{% include '_organisms/choice-card/choice-card.html.twig' with { title: 'Rediger manuellement', description: 'Creez votre cours section par section', icon: 'edit', disabled: true, badge: 'Bientot', badgeIcon: 'clock', features: [ { text: 'Controle total' }, { text: 'Sans tokens' } ] } %}| Parametre | Type | Defaut | Description |
|---|---|---|---|
title | string | (requis) | Titre de la carte |
description | string | null | Description sous le titre |
icon | string | null | Nom de l'icone principale |
color | string | 'primary' | Theme couleur : primary, violet, warning, success |
colorHex | string | null | Couleur hex custom (ex: '#8B5CF6') |
features | array | [] | Liste de features [{text: '...'}] |
href | string | null | Lien (rend la carte cliquable, tag <a>) |
action | string | null | data-action Stimulus (tag <button>) |
disabled | bool | false | Desactive la carte (opacite reduite, non cliquable) |
badge | string | null | Texte du badge en haut a droite |
badgeIcon | string | null | Icone du badge |
class | string | '' | Classes Tailwind additionnelles |
templates/_organisms/choice-card/choice-card.html.twig