from django.urls import path from .views import LeadSubmitView urlpatterns = [ path("leads/", LeadSubmitView.as_view(), name="lead-submit"), ]