mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
d73d0e071c
Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
17 lines
503 B
Python
17 lines
503 B
Python
from django.conf.urls import include, url
|
|
from django.contrib import admin
|
|
|
|
from . import views
|
|
|
|
ns_patterns = [
|
|
url(r'^xview/func/$', views.xview_dec(views.xview), name='func'),
|
|
]
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
url(r'^admindocs/', include('django.contrib.admindocs.urls')),
|
|
url(r'^', include(ns_patterns, namespace='test')),
|
|
url(r'^xview/func/$', views.xview_dec(views.xview)),
|
|
url(r'^xview/class/$', views.xview_dec(views.XViewClass.as_view())),
|
|
]
|