mirror of
https://github.com/Llloooggg/WhereToGo.git
synced 2026-03-05 20:26:23 +03:00
13 lines
435 B
Python
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)
|