{% extends 'SEAdminBundle:layout:layout.html.twig' %} {% block body_left %} {# Module pour blocker l'accée au site #} {% if seadmin.modules.standby is defined and seadmin.modules.standby %} {% include 'SEAdminBundle:parameters:standby.html.twig' %} {% endif %} {# Module pour les vieux naviguateurs #} {% if seadmin.modules.oldbrowser is defined and seadmin.modules.oldbrowser %} {% include 'SEAdminBundle:oldbrowser:config.html.twig' %} {% endif %} {# Module de statistique oocharts #} {% if seadmin.analytics.oocharts.apikey is defined and seadmin.analytics.oocharts.profile is defined %} {% include 'SEAdminBundle:dashboard:oocharts.html.twig' %} {% else %}
Information ! Pour afficher cette page vous devez configurer votre apikey oocharts dans le fichier app/config/config.yml

Exemple pour la configuration :

se_admin:
analytics:
oocharts:
apikey: VOTRE_API_KEY_OOCHARTS
profile: VOTRE_PROFILE_KEY_GOOGLE_ANALYTICS (68864131)
[...]
{% endif %} {% endblock %}