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 include, path from fpiweb.views import \ IndexView, \ LoginView __author__ = '(Multiple)' __project__ = "Food-Pantry-Inventory" __creation_date__ = "04/01/2019" urlpatterns = [ path('', LoginView.as_view()), path('fpiweb/', include('fpiweb.urls')), path( 'warmadmin/', admin.site.urls, ), ] # EOF
app_name = 'fpiweb' urlpatterns = [ # index page # e.g. /fpiweb/ or /fpiweb/index/ path('', IndexView.as_view(), name='index'), path('index/', IndexView.as_view(), name='index'), # about page # e.g. /fpiweb/about/ path('about/', AboutView.as_view(), name='about'), # login page # e.g. /fpiweb/login/ path('login/', LoginView.as_view(), name='login'), # logout page # e.g. /fpiweb/logout/ path('logout/', LogoutView.as_view(), name='logout'), # Constraint List page # e.g. /fpiweb/constraints/ = list of constraints path('constraints/', ConstraintsListView.as_view(), name='constraints_view'), # # e.g. /fpiweb/constraints/4/ = show constraint # 4 # path('constraint/<int:constraint>', ConstraintDetailView.as_view(), # name='constraint_detail', ), # e.g. /fpiweb/constraints/add/ = add a constraint