7 lines
157 B
Python
7 lines
157 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
(r'^$', 'examples.views.index'),
|
||
|
(r'^hello/', include('examples.hello.urls')),
|
||
|
)
|