takahe/users/views/settings/interface.py

35 lines
1.1 KiB
Python
Raw Normal View History

2022-11-26 02:33:46 +00:00
from activities.models.post import Post
from users.views.settings.settings_page import SettingsPage
2022-11-26 02:33:46 +00:00
class InterfacePage(SettingsPage):
section = "interface"
options = {
"toot_mode": {
"title": "I Will Toot As I Please",
"help_text": "Changes all 'Post' buttons to 'Toot!'",
},
"default_post_visibility": {
"title": "Default Post Visibility",
"help_text": "Visibility to use as default for new posts.",
"choices": Post.Visibilities.choices,
},
2022-12-24 06:01:27 +00:00
"visible_reaction_counts": {
"title": "Show Boost and Like Counts",
"help_text": "Disable to hide the number of Likes and Boosts on a 'Post'",
},
2022-12-24 14:28:39 +00:00
"custom_css": {
"title": "Custom CSS",
"help_text": "Theme the website however you'd like, just for you. You should probably not use this unless you know what you're doing.",
"display": "textarea",
},
2022-11-26 02:33:46 +00:00
}
2022-12-24 06:01:27 +00:00
layout = {
"Posting": ["toot_mode", "default_post_visibility"],
"Wellness": ["visible_reaction_counts"],
2022-12-24 14:28:39 +00:00
"Appearance": ["custom_css"],
2022-12-24 06:01:27 +00:00
}