Finish Threshold stats and implement network listing
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user