The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.1/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 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, include from webapp.views import PostListView, PostDetailView, PostCreateView, PostDeleteView, PostUpdateView, UserListView, UserDetailView urlpatterns = [ path('admin/', admin.site.urls), path('accounts/', include('webauth.urls', namespace='webauth')), path('', PostListView.as_view(), name='post_list'), path('post/<int:pk>', PostDetailView.as_view(), name='post_detail'), path('post/create', PostCreateView.as_view(), name='post_create'), path('post/<int:pk>/post_delete', PostDeleteView.as_view(), name='post_delete'), path('post/<int:pk>/update', PostUpdateView.as_view(), name='post_update'), path('user', UserListView.as_view(), name='user_list'), path('user/<int:pk>', UserDetailView.as_view(), name='user_detail') ]
Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 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.contrib.auth.views import LoginView, LogoutView from django.urls import path from django.conf import settings from django.conf.urls.static import static from webapp.views import UserIndexView, register_view, UserDetailView, UserPasswordChangeView, user_activate urlpatterns = [ path('admin/', admin.site.urls), path('', UserIndexView.as_view(), name='index'), path('login/', LoginView.as_view(), name='login'), path('logout/', LogoutView.as_view(), name='logout'), path('register/', register_view, name='register'), path('register/activate/', user_activate, name='user_activate'), path('profile/<pk>/', UserDetailView.as_view(), name='user_detail'), path('profile/<pk>/change-password/', UserPasswordChangeView.as_view(), name='user_change_password'), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)