Files @ 2a99a0c81a5d
Branch filter:

Location: website/conservancy/contractpatch/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 . import views as cpatch_views

urlpatterns = [
    path('', cpatch_views.index),
]