django-select2/testapp/testmain/urls.py
AppleGrew (applegrew) 8579993107 v1.1 changes.
Lots of fixes and redesign. Also added a full fledged project for
testing out the components.
2012-08-19 23:13:15 +05:30

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'),
)