mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
1858e47672
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17937 bcc190cf-cafb-0310-a4f2-bffc1f526a37
14 lines
407 B
Python
14 lines
407 B
Python
# coding: utf-8
|
|
from __future__ import absolute_import
|
|
|
|
from django.conf.urls import patterns
|
|
|
|
from . import views
|
|
from .models import Article
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^special_headers/article/(?P<object_id>\d+)/$', views.xview_xheaders),
|
|
(r'^special_headers/xview/func/$', views.xview_dec(views.xview)),
|
|
(r'^special_headers/xview/class/$', views.xview_dec(views.XViewClass.as_view())),
|
|
)
|