from django.urls import path from custompage.views import * urlpatterns = [ path('admin/custom-pages/', adminCustomPage.as_view(), name='adminCustomPage'), path('admin/create/custom-page/', adminCustomPageCreate.as_view(), name='adminCustomPageCreate'), path('admin/custom-pages/edit/', adminCustomPageEdit.as_view(), name='adminCustomPageEdit'), path('admin/custom-pages/', adminCustomPageDelete, name='adminCustomPageDelete'), path('/', customPageFront, name='customPageFront') ]