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