Create view

This commit is contained in:
Yohann D'ANELLO
2020-02-29 11:39:42 +01:00
parent 8e45f9df49
commit abee482257
14 changed files with 268 additions and 2 deletions

View File

@ -15,9 +15,13 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path('accounts/', include('django.contrib.auth.urls')),
path('i18n/', include('django.conf.urls.i18n')),
path('admin/', admin.site.urls),
path('', include('tbde.urls')),
]