mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-05-19 02:11:06 +00:00
Lots of fixes and redesign. Also added a full fledged project for testing out the components.
6 lines
282 B
Python
6 lines
282 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns("",
|
|
url(r'auto/model/field/$', 'testmain.views.test_auto_model_field', name='test_auto_model_field'),
|
|
url(r'auto/model/field/([0-9]+)/$', 'testmain.views.test_auto_model_field1', name='test_auto_model_field2'),
|
|
)
|