1
"""config URL Configuration
3
The `urlpatterns` list routes URLs to views. For more information please see:
4
https://docs.djangoproject.com/en/4.0/topics/http/urls/
7
1. Add an import: from my_app import views
8
2. Add a URL to urlpatterns: path('', views.home, name='home')
10
1. Add an import: from other_app.views import Home
11
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
12
Including another URLconf
13
1. Import the include() function: from django.urls import include, path
14
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
17
from django.conf import settings
18
from django.conf.urls.static import static
19
from django.contrib import admin
20
from django.urls import path, include
21
from django.views.generic import RedirectView
24
path('admin/', admin.site.urls),
25
path("i18n/", include('django.conf.urls.i18n')),
26
path('', RedirectView.as_view(url='home/')),
27
path('home/', include('mainapp.urls', namespace='home')),
28
path('authapp/', include('authapp.urls', namespace='authapp')),
29
path('social_auth/', include('social_django.urls', namespace='social')),
36
urlpatterns.append(path("__debug__/", include(debug_toolbar.urls)))
37
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)