network_inventory/core/urls.py

8 lines
162 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')),
]