urls.py 596 B

1234567891011121314151617181920
  1. from django.conf.urls import ( # noqa
  2. patterns, include, url, handler404, handler500,
  3. )
  4. # Uncomment the next two lines to enable the admin:
  5. # from django.contrib import admin
  6. # admin.autodiscover()
  7. urlpatterns = patterns(
  8. '',
  9. # Examples:
  10. # url(r'^$', 'proj.views.home', name='home'),
  11. # url(r'^proj/', include('proj.foo.urls')),
  12. # Uncomment the admin/doc line below to enable admin documentation:
  13. # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
  14. # Uncomment the next line to enable the admin:
  15. # url(r'^admin/', include(admin.site.urls)),
  16. )