website/conservancy/summit_registration/urls.py
Ben Sturmfels 2a99a0c81a
Switch from url() to path()
Path is the new way to handle simpler routing rules.
2024-03-18 17:51:33 +11:00

7 lines
101 B
Python

from django.urls import path
from .views import register
urlpatterns = [
path('', register),
]