mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-06 15:04:13 +00:00
introduce breadcrumbs in the web config
This commit is contained in:
parent
1968e15237
commit
e8cf014903
17 changed files with 139 additions and 16 deletions
|
|
@ -1,11 +1,16 @@
|
|||
from owrx.controllers.settings import SettingsFormController, Section
|
||||
from owrx.form import CheckboxInput, ServicesCheckboxInput
|
||||
from owrx.breadcrumb import Breadcrumb, BreadcrumbItem
|
||||
from owrx.controllers.settings import SettingsBreadcrumb
|
||||
|
||||
|
||||
class BackgroundDecodingController(SettingsFormController):
|
||||
def getTitle(self):
|
||||
return "Background decoding"
|
||||
|
||||
def get_breadcrumb(self) -> Breadcrumb:
|
||||
return SettingsBreadcrumb().append(BreadcrumbItem("Background decoding", "settings/backgrounddecoding"))
|
||||
|
||||
def getSections(self):
|
||||
return [
|
||||
Section(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue