takahe/users/views/settings/interface.py
Andrew Godwin 8f57aa5f37
UI/Domains Refactor
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
2023-05-03 22:42:37 -06:00

16 lines
377 B
Python

from users.views.settings.settings_page import UserSettingsPage
class InterfacePage(UserSettingsPage):
section = "interface"
options = {
"light_theme": {
"title": "Light Theme",
"help_text": "Use a light theme when you are logged in to the web interface",
},
}
layout = {
"Appearance": ["light_theme"],
}