from django.urls import path from lot import views app_name = 'lot' urlpatterns = [ path("add/", views.NewLotView.as_view(), name="add"), path("edit//", views.EditLotView.as_view(), name="edit"), ]