diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-21 21:47:09 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-07-21 21:47:09 +0200 |
commit | a531c5e12a65ac7c216bb3f91e510c1d31fbb06e (patch) | |
tree | c306bfc36f54815759cfe4b15b8f296865e2b70e /manager | |
parent | modify gitignore (diff) | |
download | scout-subs-a531c5e12a65ac7c216bb3f91e510c1d31fbb06e.tar.gz scout-subs-a531c5e12a65ac7c216bb3f91e510c1d31fbb06e.zip |
static files, last improvements0.1
Diffstat (limited to 'manager')
-rw-r--r-- | manager/settings.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/manager/settings.py b/manager/settings.py index 094f1e9..04d9947 100644 --- a/manager/settings.py +++ b/manager/settings.py @@ -133,5 +133,8 @@ USE_TZ = True # https://docs.djangoproject.com/en/3.0/howto/static-files/ STATIC_URL = '/static/' +STATICFILES_DIRS = [ + os.path.join(BASE_DIR, "static") +] LOGIN_REDIRECT_URL = '/' LOGOUT_REDIRECT_URL = '/' |