From 26c99f1ece9661c8b93883b7244422342d84bd39 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 14 Feb 2016 19:07:47 +0100 Subject: [PATCH] Added a missing template to the game_template --- evennia/game_template/server/conf/settings.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/evennia/game_template/server/conf/settings.py b/evennia/game_template/server/conf/settings.py index 2f8d55077..35552b9a7 100644 --- a/evennia/game_template/server/conf/settings.py +++ b/evennia/game_template/server/conf/settings.py @@ -87,10 +87,13 @@ STATICFILES_DIRS = ( # We setup the location of the website template as well as the admin site. TEMPLATE_DIRS = ( - os.path.join(GAME_DIR, "web", "template_overrides", ACTIVE_TEMPLATE), + os.path.join(GAME_DIR, "web", "template_overrides", WEBSITE_TEMPLATE), + os.path.join(GAME_DIR, "web", "template_overrides", WEBCLIENT_TEMPLATE), os.path.join(GAME_DIR, "web", "template_overrides"), - os.path.join(EVENNIA_DIR, "web", "website", "templates", ACTIVE_TEMPLATE), - os.path.join(EVENNIA_DIR, "web", "website", "templates"),) + os.path.join(EVENNIA_DIR, "web", "website", "templates", WEBSITE_TEMPLATE), + os.path.join(EVENNIA_DIR, "web", "website", "templates"), + os.path.join(EVENNIA_DIR, "web", "webclient", "templates", WEBCLIENT_TEMPLATE), + os.path.join(EVENNIA_DIR, "web", "webclient", "templates"),) # The secret key is randomly seeded upon creation. It is used to sign # Django's cookies. Do not share this with anyone. Changing it will