Add member count to home

This commit is contained in:
Ludovic Stephan 2020-08-28 16:12:03 +02:00 committed by Martin Pépin
parent 8fa635773c
commit e7cc705350
No known key found for this signature in database
GPG key ID: E7520278B1774448
4 changed files with 64 additions and 19 deletions

View file

@ -5,7 +5,7 @@ The settings that are not listed here are imported from .common
import os
from .common import * # NOQA
from .common import BASE_DIR, INSTALLED_APPS
from .common import BASE_DIR, INSTALLED_APPS, TEMPLATES
# ---
# BDS-only Django settings
@ -20,6 +20,10 @@ STATIC_URL = "/gestion2/static/"
MEDIA_ROOT = "/srv/bds.ens.fr/gestion2/media"
MEDIA_URL = "/gestion2/media/"
TEMPLATES[0]["OPTIONS"]["context_processors"] += [
"bds.context_processors.member_count",
]
# ---
# Auth-related stuff

View file

@ -3,7 +3,7 @@ import os
from . import bds_prod
from .cof_prod import * # NOQA
from .cof_prod import BASE_DIR, INSTALLED_APPS, MIDDLEWARE, TESTING
from .cof_prod import BASE_DIR, INSTALLED_APPS, MIDDLEWARE, TEMPLATES, TESTING
# ---
# Merge COF and BDS configs
@ -13,6 +13,9 @@ for app in bds_prod.INSTALLED_APPS:
if app not in INSTALLED_APPS:
INSTALLED_APPS.append(app)
TEMPLATES[0]["OPTIONS"]["context_processors"] += [
"bds.context_processors.member_count",
]
# ---
# Tweaks for debug/local development