New app: clubs

- Clubs will be used both by the cof and the bds app.
- For now, they are only visible in development.
This commit is contained in:
Martin Pépin 2019-10-06 19:59:07 +02:00
parent 8ccaf8beaf
commit 380e38519b
No known key found for this signature in database
GPG key ID: E7520278B1774448
11 changed files with 78 additions and 5 deletions

View file

@ -17,7 +17,7 @@ if TESTING:
# As long as these apps are not ready for production, they are only available
# in development mode
INSTALLED_APPS += ["events", "bds"]
INSTALLED_APPS += ["events", "bds", "clubs"]
# ---

View file

@ -13,7 +13,7 @@ DEBUG = False
ALLOWED_HOSTS = ["cof.ens.fr", "www.cof.ens.fr", "dev.cof.ens.fr"]
if TESTING:
INSTALLED_APPS.append("events")
INSTALLED_APPS += ["events", "clubs"]
STATIC_ROOT = os.path.join(
os.path.dirname(os.path.dirname(BASE_DIR)), "public", "gestion", "static"