Implement getting alerts in overview

This commit is contained in:
2022-08-03 09:24:13 +01:00
parent f52d01d6f7
commit 04d4cee222
6 changed files with 174 additions and 2 deletions

View File

@@ -40,6 +40,7 @@ from core.views.manage.threshold.irc import (
ThresholdIRCNetworkRelays,
ThresholdIRCNetworkRelayStatus,
ThresholdIRCNetworks,
ThresholdIRCOverviewAlerts,
ThresholdIRCStats,
)
@@ -101,6 +102,11 @@ urlpatterns = [
ThresholdIRCStats.as_view(),
name="threshold_irc_stats",
),
path(
"manage/threshold/irc/overview/alerts/",
ThresholdIRCOverviewAlerts.as_view(),
name="threshold_irc_overview_alerts",
),
path(
"manage/threshold/irc/overview/networks/",
ThresholdIRCNetworks.as_view(),