diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-02 19:22:53 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-02 19:22:53 +0100 |
commit | 663d4a2a02bfc10b50d109cc076eb54cfc8975b6 (patch) | |
tree | d5ebdee7b651f52fd99287260ef0c9839076dffb /core/views/statistics.py | |
parent | 371542fb1eafb721fe44fe9fbed3f37f2aeafe5e (diff) | |
download | troggle-663d4a2a02bfc10b50d109cc076eb54cfc8975b6.tar.gz troggle-663d4a2a02bfc10b50d109cc076eb54cfc8975b6.tar.bz2 troggle-663d4a2a02bfc10b50d109cc076eb54cfc8975b6.zip |
JSLIB and tidy path settings
Diffstat (limited to 'core/views/statistics.py')
-rw-r--r-- | core/views/statistics.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/views/statistics.py b/core/views/statistics.py index 3102d51..9d5cd16 100644 --- a/core/views/statistics.py +++ b/core/views/statistics.py @@ -24,6 +24,7 @@ def pathsreport(request): pathsdict = { # "BOGUS" : str( settings.BOGUS), "JSLIB_URL" : str( settings.JSLIB_URL), + "JSLIB_ROOT" : str( settings.JSLIB_ROOT), # "CSSLIB_URL" : str( settings.CSSLIB_URL), "CAVEDESCRIPTIONS" : str( settings.CAVEDESCRIPTIONS), "DIR_ROOT" : str( settings.DIR_ROOT), @@ -60,6 +61,7 @@ def pathsreport(request): pathstype = { # "BOGUS" : type(settings.BOGUS), "JSLIB_URL" : type(settings.JSLIB_URL), + "JSLIB_ROOT" : str( settings.JSLIB_ROOT), # "CSSLIB_URL" : type(settings.CSSLIB_URL), "CAVEDESCRIPTIONS" : type(settings.CAVEDESCRIPTIONS), "DIR_ROOT" : type(settings.DIR_ROOT), |