mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-19 12:41:12 +00:00
widgets.py contains DOS and Unix line returns, I've converted it to DOS only to keep changes small in this commit.
7 lines
203 B
Python
7 lines
203 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"),
|
|
)
|