-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
87 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Copyright: 2022, ECP, NLnet Labs and the Internet.nl contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
from django.conf.urls import url | ||
from django.urls import path | ||
|
||
from interface.views.connection import network_ipv4 | ||
|
||
urlpatterns = [ | ||
url(r"^$", network_ipv4), | ||
path("", network_ipv4), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Copyright: 2022, ECP, NLnet Labs and the Internet.nl contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
from django.conf.urls import url | ||
from django.urls import path | ||
|
||
from interface.views.connection import aaaa_ipv6 | ||
|
||
urlpatterns = [ | ||
url(r"^$", aaaa_ipv6), | ||
path("", aaaa_ipv6), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Copyright: 2022, ECP, NLnet Labs and the Internet.nl contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
from django.conf.urls import url | ||
from django.urls import path | ||
|
||
from interface.views.connection import network_resolver | ||
|
||
urlpatterns = [ | ||
url(r"^$", network_resolver), | ||
path("", network_resolver), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Copyright: 2022, ECP, NLnet Labs and the Internet.nl contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
from django.conf import settings | ||
from django.conf.urls import include, url | ||
from django.urls import include, path, re_path | ||
from django.contrib import admin | ||
|
||
urlpatterns = [ | ||
url(r"^", include("interface.urls")), | ||
path("", include("interface.urls")), | ||
] | ||
handler404 = "interface.views.page404" | ||
|
||
if settings.DEBUG is True: | ||
urlpatterns += [ | ||
url(r"^admin/", admin.site.urls), | ||
re_path(r"^admin/", admin.site.urls), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters