summaryrefslogtreecommitdiffstats
path: root/users/views/admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'users/views/admin.py')
-rw-r--r--users/views/admin.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/users/views/admin.py b/users/views/admin.py
index 165572c..9476417 100644
--- a/users/views/admin.py
+++ b/users/views/admin.py
@@ -24,7 +24,6 @@ class AdminSettingsPage(SettingsPage):
at the bottom of the page. Don't add this to a URL directly - subclass!
"""
- template_name = "admin/settings.html"
options_class = Config.SystemOptions
def load_config(self):
@@ -47,6 +46,15 @@ class BasicPage(AdminSettingsPage):
"title": "Highlight Color",
"help_text": "Used for logo background and other highlights",
},
+ "post_length": {
+ "title": "Maximum Post Length",
+ "help_text": "The maximum number of characters allowed per post",
+ },
+ }
+
+ layout = {
+ "Branding": ["site_name", "highlight_color"],
+ "Posts": ["post_length"],
}