network_inventory/core/urls.py
2022-03-27 14:50:44 +02:00

8 lines
161 B
Python

from django.urls import path, include
urlpatterns = [
# required for the login functionality
path("accounts/", include("django.contrib.auth.urls")),
]