2015-09-25 20:11:50 +00:00
|
|
|
"""
|
2016-02-04 10:47:21 +00:00
|
|
|
Django-Select2 URL configuration.
|
2015-09-25 20:11:50 +00:00
|
|
|
|
2016-02-04 10:47:21 +00:00
|
|
|
Add `django_select` to your ``urlconf`` **if** you use any 'Model' fields::
|
2015-09-25 20:11:50 +00:00
|
|
|
|
2019-03-10 11:13:43 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
path('select2/', include('django_select2.urls')),
|
2015-09-25 20:11:50 +00:00
|
|
|
|
|
|
|
|
"""
|
2019-03-10 11:13:43 +00:00
|
|
|
from django.urls import path
|
2012-08-05 07:30:44 +00:00
|
|
|
|
|
|
|
|
from .views import AutoResponseView
|
|
|
|
|
|
2019-03-10 11:13:43 +00:00
|
|
|
app_name = 'django_select2'
|
|
|
|
|
|
2015-12-09 20:26:34 +00:00
|
|
|
urlpatterns = [
|
2019-03-10 11:13:43 +00:00
|
|
|
path("fields/auto.json", AutoResponseView.as_view(), name="auto-json"),
|
2015-12-09 20:26:34 +00:00
|
|
|
]
|