Guest User

Untitled

a guest
Feb 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. from django.conf.urls.defaults import patterns, include, url
  2.  
  3. # Uncomment the next two lines to enable the admin:
  4.  
  5. from django.contrib import admin
  6.  
  7. admin.autodiscover()
  8.  
  9. urlpatterns = patterns('',
  10. # Examples:
  11. # url(r'^$', 'intranet.views.home', name='home'),
  12. # url(r'^intranet/', include('intranet.foo.urls')),
  13.  
  14. # Uncomment the admin/doc line below to enable admin documentation:
  15. # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
  16.  
  17. # Uncomment the next line to enable the admin:
  18. url(r'^admin/', include(admin.site.urls)),
  19. )
Add Comment
Please, Sign In to add comment