network_inventory/core/urls.py

8 lines
161 B
Python
Raw Normal View History

2020-01-11 18:08:25 +01:00
from django.urls import path, include
urlpatterns = [
# required for the login functionality
path('accounts/', include('django.contrib.auth.urls')),
2020-08-03 13:41:49 +02:00
]