Files @ 374ec19b7705
Branch filter:

Location: website/conservancy/summit_registration/urls.py

bsturmfels
Defer JavaScript loading

This avoids waiting for the JS to download before rendering the page.
1
2
3
4
5
6
7
from django.urls import path

from .views import register

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