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