summaryrefslogtreecommitdiffstats
path: root/users
diff options
context:
space:
mode:
authorAndrew Godwin2022-12-17 15:30:51 -0700
committerAndrew Godwin2022-12-17 15:30:51 -0700
commit4d71da7ae1c961f9ecc59b449f5c5d6661931988 (patch)
treee5fb5820db21070760c58fabdd50d40db9a065a3 /users
parentd08324e1590df4a7da19b70430e4abe364850d9b (diff)
downloadtakahe-4d71da7ae1c961f9ecc59b449f5c5d6661931988.tar.gz
takahe-4d71da7ae1c961f9ecc59b449f5c5d6661931988.tar.bz2
takahe-4d71da7ae1c961f9ecc59b449f5c5d6661931988.zip
Allow for remote policy pages
Diffstat (limited to 'users')
-rw-r--r--users/views/admin/settings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/users/views/admin/settings.py b/users/views/admin/settings.py
index 4786d83..f72c0bd 100644
--- a/users/views/admin/settings.py
+++ b/users/views/admin/settings.py
@@ -174,17 +174,17 @@ class PoliciesSettings(AdminSettingsPage):
options = {
"policy_terms": {
"title": "Terms of Service Page",
- "help_text": "Will only be shown if it has content. Use Markdown for formatting.",
+ "help_text": "Will only be shown if it has content. Use Markdown for formatting.\nIf you would like to redirect elsewhere, enter just a URL.",
"display": "textarea",
},
"policy_privacy": {
"title": "Privacy Policy Page",
- "help_text": "Will only be shown if it has content. Use Markdown for formatting.",
+ "help_text": "Will only be shown if it has content. Use Markdown for formatting.\nIf you would like to redirect elsewhere, enter just a URL.",
"display": "textarea",
},
"policy_rules": {
"title": "Server Rules Page",
- "help_text": "Will only be shown if it has content. Use Markdown for formatting.",
+ "help_text": "Will only be shown if it has content. Use Markdown for formatting.\nIf you would like to redirect elsewhere, enter just a URL.",
"display": "textarea",
},
}