- apps/products: ProductIndexPage/ProductPage - apps/cases: CaseStudyIndexPage/CaseStudyPage - apps/forms: FormDefinition/FormDefinitionField/Lead + submit API - core/blocks: CaseStudyBlock, FormBlock (with API representation) - register new apps, custom leads API route, migrations
8 lines
149 B
Python
8 lines
149 B
Python
from django.urls import path
|
|
|
|
from .views import LeadSubmitView
|
|
|
|
urlpatterns = [
|
|
path("leads/", LeadSubmitView.as_view(), name="lead-submit"),
|
|
]
|