{# Layout commun pour les pages Stats admin #} {% extends '@EasyAdmin/page/content.html.twig' %} {% set periods = { 'today': "Aujourd'hui", '7d': '7 jours', '30d': '30 jours', 'month': 'Ce mois', 'quarter': 'Ce trimestre', 'year': 'Cette annee', } %} {% block content_title %} {% block stats_title %}Statistiques{% endblock %} {% endblock %} {% block main %}
{# stats_route_name est defini par chaque template enfant #} {% set _sr = stats_route_name | default('admin_stats_index') %} {# --- Navigation stats --- #} {# --- Filtre periode + exports --- #}
{% set _ep = stats_extra_params | default({}) %} {% for key, val in periods %} {{ val }} {% endfor %}
Export CSV Export PDF
{% block stats_content %}{% endblock %}
{% endblock %}