diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-22 00:03:23 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-22 00:03:23 +0100 |
commit | 674cea629dbcbfd99c74261bba17d056fbabd8ac (patch) | |
tree | 0b322ae44f76e076f10a0187fcb56ca54d2a1b77 /settings.py | |
parent | 8199e67b79c4c136e7dbb65432534194c08f9195 (diff) | |
download | troggle-674cea629dbcbfd99c74261bba17d056fbabd8ac.tar.gz troggle-674cea629dbcbfd99c74261bba17d056fbabd8ac.tar.bz2 troggle-674cea629dbcbfd99c74261bba17d056fbabd8ac.zip |
clean up import statements: more specific
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings.py b/settings.py index 2c843be..b4b9778 100644 --- a/settings.py +++ b/settings.py @@ -108,10 +108,10 @@ INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.messages', # 'django.contrib.staticfiles', # apparently not working. Using workarounds with flatpages - 'registration', - 'troggle.profiles', + 'registration', # only for expo user. REPLACE with another non-admin, contrib.auth user ? + 'troggle.profiles', # Probably don't need this at all 'troggle.core', - 'troggle.flatpages', + 'troggle.flatpages', # NOT django.contrib.flatpages.models.FlatPage Merge in with troggle ? ) MIDDLEWARE_CLASSES = ( |