diff --git a/app/urls.py b/app/urls.py index 81c531e..706758b 100644 --- a/app/urls.py +++ b/app/urls.py @@ -40,6 +40,7 @@ from core.views.dynamic.insights import ( from core.views.dynamic.manage.threshold.irc import ( ThresholdIRCNetworkChannels, ThresholdIRCNetworkInfo, + ThresholdIRCNetworkInfoEdit, ThresholdIRCNetworkRelays, ThresholdIRCNetworks, ThresholdIRCStats, @@ -103,6 +104,16 @@ urlpatterns = [ ThresholdIRCNetworkInfo.as_view(), name="threshold_irc_network_info", ), + path( + "manage/threshold/irc/network//info/edit/", + ThresholdIRCNetworkInfoEdit.as_view(), + name="threshold_irc_network_info_edit", + ), + path( + "manage/threshold/irc/network//edit/", + ThresholdIRCNetworkInfoEdit.as_view(), + name="threshold_irc_network_edit", + ), path( "manage/threshold/irc/network//relays/", ThresholdIRCNetworkRelays.as_view(), diff --git a/core/templates/base.html b/core/templates/base.html index 30c7d2e..294b82e 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -12,6 +12,7 @@ +