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

13 lines
435 B
Python

from django.contrib import admin
from django.urls import path, include
from django.views.generic import TemplateView
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path("admin/", admin.site.urls),
path("accounts/", include("allauth.urls")),
path("", TemplateView.as_view(template_name="common/index.html")),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)