Implement deleting networks

This commit is contained in:
2022-08-02 09:04:23 +01:00
parent 62ef524ac7
commit ad153cdefa
7 changed files with 86 additions and 33 deletions

View File

@@ -33,6 +33,7 @@ from core.views.manage.threshold.irc import (
ThresholdIRCNetworkActionsList,
ThresholdIRCNetworkActionsRelay,
ThresholdIRCNetworkChannels,
ThresholdIRCNetworkDel,
ThresholdIRCNetworkInfo,
ThresholdIRCNetworkInfoEdit,
ThresholdIRCNetworkRelayDel,
@@ -119,6 +120,11 @@ urlpatterns = [
ThresholdIRCNetwork.as_view(),
name="threshold_irc_network",
),
path(
"manage/threshold/irc/overview/network/<str:net>/delete/",
ThresholdIRCNetworkDel.as_view(),
name="threshold_irc_network_del",
),
path(
"manage/threshold/irc/network/<str:net>/info/",
ThresholdIRCNetworkInfo.as_view(),