37060-vm/core/urls.py
Flatlogic Bot 22430782fa 1
2025-12-18 21:41:14 +00:00

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'),
]