7 lines
184 B
Python
7 lines
184 B
Python
from django.urls import path
|
|
from .views import index, intake_success
|
|
|
|
urlpatterns = [
|
|
path('', index, name='index'),
|
|
path('success/', intake_success, name='intake_success'),
|
|
] |