10 lines
284 B
Python
10 lines
284 B
Python
from django.utils.translation import gettext_lazy as _
|
|
from django.views.generic import TemplateView
|
|
|
|
from aircox.views.admin import AdminMixin
|
|
|
|
|
|
class StreamerAdminMixin(AdminMixin, TemplateView):
|
|
template_name = "aircox_streamer/streamer.html"
|
|
title = _("Streamer Monitor")
|