{% extends 'base.html.twig' %} {% block title %}Support - Bubul{% endblock %} {% block body %}
{# Sidebar nav #} {% include '_molecules/settings-nav/settings-nav.html.twig' with { user: user, activePage: 'support' } only %} {# Contenu principal #}
{# ── Header mobile : icône + titre + bouton sur une ligne, description en dessous ── #}
{% include '_atoms/icon/icon.html.twig' with { name: 'message', size: 'lg', color: 'primary' } only %}

Support

{% include '_atoms/button/button.html.twig' with { label: 'Nouveau ticket', variant: 'primary', icon: 'plus', href: path('app_support_new'), iconOnly: true, size: 'sm' } only %}

Suivez vos demandes et échangez avec notre équipe

{# ── Header desktop ── #} {# Tickets #} {% if tickets|length == 0 %}
{% include '_molecules/empty-state/empty-state.html.twig' with { title: 'Aucune demande de support', subtitle: 'Créez votre premier ticket si vous avez une question ou un problème.', icon: 'message', action: { label: 'Créer un ticket', href: path('app_support_new'), variant: 'primary' } } only %}
{% else %} {% if pagination.total > 1 %}
{% include '_molecules/pagination/pagination.html.twig' with { currentPage: pagination.current, totalPages: pagination.total, routeName: 'app_support_index' } only %}
{% endif %} {% endif %}
{% endblock %}