change the admin url

This commit is contained in:
Andreas Zweili 2021-12-30 18:05:25 +01:00
parent b51d7c00e9
commit b85be757cd
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ urlpatterns = [
path(r'', include('licenses.urls')),
path(r'', include('nets.urls')),
path(r'', include('users.urls')),
path('admin/', admin.site.urls),
path('management/', admin.site.urls),
path('_nested_admin/', include('nested_admin.urls')),
]