Implement form for editing network
This commit is contained in:
11
app/urls.py
11
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/<str:net>/info/edit/",
|
||||
ThresholdIRCNetworkInfoEdit.as_view(),
|
||||
name="threshold_irc_network_info_edit",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/network/<str:net>/edit/",
|
||||
ThresholdIRCNetworkInfoEdit.as_view(),
|
||||
name="threshold_irc_network_edit",
|
||||
),
|
||||
path(
|
||||
"manage/threshold/irc/network/<str:net>/relays/",
|
||||
ThresholdIRCNetworkRelays.as_view(),
|
||||
|
||||
Reference in New Issue
Block a user