Adam Goldsmith
e14e57c39e
This primarily to make the list of members not block/slow down loading excessively, as it was currently doing
14 lines
240 B
Python
14 lines
240 B
Python
from django.urls import path
|
|
|
|
from .views import MemberAutocomplete
|
|
|
|
app_name = "membershipworks"
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"member-autocomplete/",
|
|
MemberAutocomplete.as_view(),
|
|
name="member-autocomplete",
|
|
),
|
|
]
|