Finish Threshold stats and implement network listing

This commit is contained in:
2022-07-25 18:03:10 +01:00
parent c66055db9d
commit 45891cb0fb
10 changed files with 221 additions and 12 deletions

View File

@@ -0,0 +1,11 @@
from django.shortcuts import render
from django.views import View
from core.views.manage.permissions import SuperUserRequiredMixin
class ThresholdIRCOverview(SuperUserRequiredMixin, View):
template_name = "manage/threshold/irc/overview.html"
def get(self, request):
return render(request, self.template_name)