mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 16:51:00 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
16 lines
377 B
Python
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"],
|
|
}
|