mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
826b9ff5e5
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3708 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
271 B
Python
10 lines
271 B
Python
from django.conf.urls.defaults import *
|
|
import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^get_view/$', views.get_view),
|
|
(r'^post_view/$', views.post_view),
|
|
(r'^redirect_view/$', views.redirect_view),
|
|
(r'^login_protected_view/$', views.login_protected_view),
|
|
)
|