mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-03 05:40:23 +00:00
7 lines
200 B
Python
7 lines
200 B
Python
from django.conf.urls.defaults import *
|
|
|
|
from .views import AutoResponseView
|
|
|
|
urlpatterns = patterns("",
|
|
url(r"^fields/auto.json$", AutoResponseView.as_view(), name="django_select2_central_json"),
|
|
)
|