Files @ 2a99a0c81a5d
Branch filter:

Location: website/conservancy/summit_registration/urls.py

bsturmfels
Switch from `url()` to `path()`

Path is the new way to handle simpler routing rules.
1
2
3
4
5
6
7
from django.urls import path

from .views import register

urlpatterns = [
    path('', register),
]