{# SAM Section Header Component - Colored bar header for sections Parameters: - label: string (required) - Section label text - entity: string - Entity type for color: 'users', 'cohorts', 'courses', 'activities', 'stats' - title: string - Optional main title below the header - subtitle: string - Optional subtitle (HTML allowed) - action: object - Optional action button {text/label, url, icon, dataAction} Usage: {% include 'sam/_components/section_header.html.twig' with {label: 'Stagiaires', entity: 'users'} %} {% include 'sam/_components/section_header.html.twig' with { label: 'Progression', entity: 'courses', title: 'Comment progressent-ils ?', subtitle: 'Trié par complétion', action: {text: 'Voir les formations', url: path('app_sam_courses'), icon: 'book'} } %} {% include 'sam/_components/section_header.html.twig' with { label: 'Membres', entity: 'users', title: 'Membres de la cohorte', action: {label: 'Ajouter', dataAction: 'click->controller#method'} } %} #} {% set entityType = entity|default('stats') %}
{{ subtitle|raw }}
{% endif %}