mirror of
https://github.com/Hopiu/django.git
synced 2026-04-15 12:31:07 +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),
|
||
|
|
)
|