diff --git a/evennia/settings_default.py b/evennia/settings_default.py index 2d5d96cfb2..6c69eabcac 100644 --- a/evennia/settings_default.py +++ b/evennia/settings_default.py @@ -763,8 +763,8 @@ STAFF_CONTACT_EMAIL = None # Absolute path to the directory that holds file uploads from web apps. # Example: "/home/media/media.lawrence.com" MEDIA_ROOT = os.path.join(GAME_DIR, "web", "media") -# It's safe to dis-regard this, as it's a Django feature we only half use as a -# dependency, not actually what it's primarily meant for. +# If using Sites/Pages from the web admin, this value must be set to the +# database-id of the Site (domain) we want to use with this game's Pages. SITE_ID = 1 # The age for sessions. # Default: 1209600 (2 weeks, in seconds) diff --git a/evennia/web/website/templates/website/evennia_admin.html b/evennia/web/website/templates/website/evennia_admin.html index e01aee2380..4d52266ee9 100644 --- a/evennia/web/website/templates/website/evennia_admin.html +++ b/evennia/web/website/templates/website/evennia_admin.html @@ -9,40 +9,70 @@
- Welcome to the Evennia Admin Page. Here, you can edit many facets of accounts, characters, and other parts of the game. + The Evennia admin page allows for modifying database entities using a + graphical interface. +
++
+
+
+
+
+
+
-
-
-
-
-
- If you are an advanced user who needs access to the raw Django Admin, it is available here.
- You can make this the default my changing EVENNIA_ADMIN to False in settings.py and reload.
+ If you are an advanced user who needs access to the raw Django Admin,
+ it is available here. You can
+ make this the default by changing EVENNIA_ADMIN to
+ False in settings.py and reload.