takahe/users/views/settings/interface.py

17 lines
377 B
Python
Raw Permalink Normal View History

from users.views.settings.settings_page import UserSettingsPage
2022-11-25 18:33:46 -08:00
class InterfacePage(UserSettingsPage):
2022-11-25 18:33:46 -08:00
section = "interface"
options = {
"light_theme": {
"title": "Light Theme",
"help_text": "Use a light theme when you are logged in to the web interface",
},
2022-11-25 18:33:46 -08:00
}
2022-12-23 22:01:27 -08:00
layout = {
"Appearance": ["light_theme"],
2022-12-23 22:01:27 -08:00
}