forked from yourlabs/django-autocomplete-light
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathurls.py
More file actions
29 lines (22 loc) · 1.05 KB
/
urls.py
File metadata and controls
29 lines (22 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from django.conf.urls import include, url
from django.contrib import admin
import views
urlpatterns = [
url(r'^$', views.IndexView.as_view()),
url(r'^admin/', admin.site.urls),
url(r'^secure_data/', include('secure_data.urls')),
url(r'^linked_data/', include('linked_data.urls')),
url(r'^rename_forward/', include('rename_forward.urls')),
url(r'^select2_foreign_key/', include('select2_foreign_key.urls')),
url(r'^select2_list/', include('select2_list.urls')),
url(r'^select2_generic_foreign_key/',
include('select2_generic_foreign_key.urls')),
url(r'^select2_generic_m2m/', include('select2_generic_m2m.urls')),
url(r'^select2_many_to_many/',
include('select2_many_to_many.urls')),
url(r'^select2_one_to_one/', include('select2_one_to_one.urls')),
url(r'^select2_taggit/', include('select2_taggit.urls')),
url(r'^select2_tagging/', include('select2_tagging.urls')),
url(r'^select2_outside_admin/', include('select2_outside_admin.urls')),
url(r'^select2_gm2m/', include('select2_gm2m.urls')),
]