Files
WhereToGo/wheretogo/wheretogo/urls.py
2022-04-09 14:29:08 +03:00

11 lines
318 B
Python

from django.contrib import admin
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path("admin/", admin.site.urls),
path("accounts/", include("allauth.urls")),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)