mirror of
https://github.com/django/django.git
synced 2025-10-17 02:39:44 +00:00
Backport of r12762 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12763 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
160 B
Python
9 lines
160 B
Python
from django.conf.urls.defaults import *
|
|
|
|
import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^xview/$', views.xview),
|
|
(r'^class_xview/$', views.class_xview),
|
|
)
|