mirror of
https://github.com/django/django.git
synced 2025-01-24 00:59:20 +00:00
9 lines
184 B
Python
9 lines
184 B
Python
|
from django.conf.urls.defaults import *
|
||
|
import views
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
('^$', views.index),
|
||
|
('^last_modified/$', views.last_modified),
|
||
|
('^etag/$', views.etag),
|
||
|
)
|