src/hp/urls.py
changeset 37 b4ed8cdc654c
child 38 0fe2f3f5466f
equal deleted inserted replaced
36:1f0e215edbf2 37:b4ed8cdc654c
       
     1 from django.conf.urls import patterns, include, url
       
     2 
       
     3 # Uncomment the next two lines to enable the admin:
       
     4 # from django.contrib import admin
       
     5 # admin.autodiscover()
       
     6 
       
     7 urlpatterns = patterns('',
       
     8     # Examples:
       
     9     # url(r'^$', 'hp.views.home', name='home'),
       
    10     # url(r'^hp/', include('hp.foo.urls')),
       
    11 
       
    12     # Uncomment the admin/doc line below to enable admin documentation:
       
    13     # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
       
    14 
       
    15     # Uncomment the next line to enable the admin:
       
    16     # url(r'^admin/', include(admin.site.urls)),
       
    17 )