{% extends "admin/base_site.html" %} {% load static i18n %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %}

Reordonner les statistiques du programme

Retour a la liste
{% if statistics %}

Apercu sur le site

{% for stat in statistics %} {% if stat.is_active %}
{{ stat.value }}
{{ stat.label }}
{% endif %} {% endfor %}
{% endif %}

Glissez et deposez les cartes pour modifier l'ordre d'affichage des statistiques sur la page d'accueil. L'apercu ci-dessus se met a jour en temps reel.

{% if statistics %}
{% for stat in statistics %}
{{ forloop.counter }}
{% if stat.icon %} {% if ' {% endif %} {% else %} # {% endif %}
{{ stat.value }}

{{ stat.label }}

{% if stat.description %}

{{ stat.description }}

{% endif %} Modifier
{% endfor %}
{% else %}

Aucune statistique

Commencez par ajouter des statistiques du programme.

Ajouter une statistique
{% endif %}
{% endblock %}