mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
12 lines
483 B
Python
12 lines
483 B
Python
from owrx.controllers.template import WebpageController
|
|
from owrx.breadcrumb import Breadcrumb, BreadcrumbItem, BreadcrumbMixin
|
|
from owrx.controllers.settings import SettingsBreadcrumb
|
|
|
|
|
|
class FeatureController(BreadcrumbMixin, WebpageController):
|
|
def get_breadcrumb(self) -> Breadcrumb:
|
|
return SettingsBreadcrumb().append(BreadcrumbItem("Feature report", "features"))
|
|
|
|
def indexAction(self):
|
|
self.serve_template("features.html", **self.template_variables())
|