ENISE / core /context_processors.py
tiffank1802
starting
e1b5e25
from .models import Statistique
def statistiques(request):
"""Inclut les statistiques dans tous les templates"""
return {
'statistiques': Statistique.objects.all().order_by('ordre')
}