mirror of
https://github.com/Hopiu/django.git
synced 2026-04-07 08:31:02 +00:00
12 lines
269 B
Python
12 lines
269 B
Python
|
|
# coding: utf-8
|
||
|
|
from __future__ import absolute_import
|
||
|
|
|
||
|
|
from django.conf.urls import patterns
|
||
|
|
|
||
|
|
from . import views
|
||
|
|
|
||
|
|
urlpatterns = patterns('',
|
||
|
|
(r'^xview/func/$', views.xview_dec(views.xview)),
|
||
|
|
(r'^xview/class/$', views.xview_dec(views.XViewClass.as_view())),
|
||
|
|
)
|