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 rest_framework.schemas import get_schema_view from django.conf.urls.static import static from rest_framework_swagger.views import get_swagger_view from django.conf import settings from employee.views import (index, user_login, user_logout, success, ProfileUpdate, MyProfile, LoginView, LogoutView) schema_view = get_swagger_view(title='EMS API Documentation') urlpatterns = [ path('api_documentation/', schema_view), path('', index, name='home'), path('admin/', admin.site.urls), path('api/v1/auth/login/', LoginView.as_view()), path('api/v1/auth/logout/', LogoutView.as_view()), path('employee/', include('employee.urls')), path('login/', user_login, name="user_login"), path('success/', success, name="user_success"), path('logout/', user_logout, name="user_logout"), path('profile/', MyProfile.as_view(), name="my_profile"), path('profile/update', ProfileUpdate.as_view(), name="update_profile"), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
from django.urls import path, include from employee.views import user_login, user_logout, success, ProfileUpdate, MyProfile from django.contrib import admin urlpatterns = [ path('admin/', admin.site.urls), path('polls/', include('poll.urls')), path('employee/', include('employee.urls')), path('', user_login, name='user_login'), path('success/', success, name='user_success'), path('logout/', user_logout, name='user_logout'), path('profile/', MyProfile.as_view(), name='my_profile'), path('profile/update/', ProfileUpdate.as_view(), name='update_profile'), ]
from django.contrib import admin from django.urls import path, include from employee.views import (user_login, success, user_logout, MyProfile, ProfileUpdate) urlpatterns = [ path('admin/', admin.site.urls), path('poll/', include('poll.urls')), path('employee/', include('employee.urls')), path('login/', user_login, name="user_login"), path('success/', success, name="user_success"), path('logout/', user_logout, name="user_logout"), path("profile/", MyProfile.as_view(), name="my_profile"), path("profile/update", ProfileUpdate.as_view(), name="update_profile") ]
https://docs.djangoproject.com/en/2.2/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 employee import views from employee.views import ProfileUpdate, ProfileDetail urlpatterns = [ path('admin/', admin.site.urls), path('employee/', include('employee.urls')), path('poll/', include('poll.urls')), path('login/', views.user_login, name="user_login"), path('logout/', views.user_logout, name="user_logout"), path('success/', views.success, name="user_success"), path('profile/update', ProfileUpdate.as_view(), name="Profile_Update"), path('profile/', ProfileDetail.as_view(), name="my_profile") ]
The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.0/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 employee.views import user_login,success,logout,ProfileUpdate,MyProfile urlpatterns = [ path('admin/', admin.site.urls), path('employee/',include('employee.urls')), path('polls/',include('poll.urls')), path('login/',user_login,name="user_login"), path('success/',success,name="success"), path('logout/',logout,name="user_logout"), path('profile/',MyProfile.as_view(),name='my_profile'), path('profile/update',ProfileUpdate.as_view(),name='profile_update'), ]