Fix ZNC queries

This commit is contained in:
2022-08-15 17:59:09 +01:00
parent c9fe1f0b73
commit 4be21cb488
4 changed files with 41 additions and 23 deletions

View File

@@ -104,7 +104,7 @@ class ThresholdIRCNetworkRelays(SuperUserRequiredMixin, View):
def get(self, request, net):
relays = threshold.get_irc_relays(net)
context = {"relays": relays["relays"]}
context = {"net": net, "relays": relays["relays"]}
return render(request, self.template_name, context)