This commit is contained in:
bkfox
2024-04-19 15:06:23 +02:00
parent 1d321a0de6
commit 07d72d799d
60 changed files with 503 additions and 306 deletions

View File

@ -1,13 +1,13 @@
from django.utils.translation import gettext_lazy as _
from django.views.generic import TemplateView
from aircox.views.admin import AdminMixin
from aircox.views.dashboard import DashboardBaseView
from .controllers import streamers
class StreamerAdminView(AdminMixin, TemplateView):
class StreamerView(DashboardBaseView, TemplateView):
template_name = "aircox_streamer/streamer.html"
title = _("Streamer Monitor")
title = _("Streamer")
streamers = streamers
def dispatch(self, *args, **kwargs):