mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-07 15:33:57 +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,14 +1,18 @@
|
|||
from owrx.controllers.settings import SettingsFormController, Section
|
||||
from owrx.controllers.settings import SettingsFormController, Section, SettingsBreadcrumb
|
||||
from owrx.form import CheckboxInput, NumberInput, DropdownInput, Js8ProfileCheckboxInput, MultiCheckboxInput, Option
|
||||
from owrx.form.wfm import WfmTauValues
|
||||
from owrx.form.wsjt import Q65ModeMatrix, WsjtDecodingDepthsInput
|
||||
from owrx.wsjt import Fst4Profile, Fst4wProfile
|
||||
from owrx.breadcrumb import Breadcrumb, BreadcrumbItem
|
||||
|
||||
|
||||
class DecodingSettingsController(SettingsFormController):
|
||||
def getTitle(self):
|
||||
return "Demodulation and decoding"
|
||||
|
||||
def get_breadcrumb(self) -> Breadcrumb:
|
||||
return SettingsBreadcrumb().append(BreadcrumbItem("Demodulation and decoding", "settings/decoding"))
|
||||
|
||||
def getSections(self):
|
||||
return [
|
||||
Section(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue