urls.py 654 B

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