Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 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. # from django.contrib import admin
  5. # admin.autodiscover()
  6.  
  7. urlpatterns = patterns('',
  8. # Examples:
  9. url(r'^$', 'devmitep.views.home', name='home'),
  10. url(r'^search$', 'devmitep.views.search', name='search'),
  11. # url(r'^devmitep/', include('devmitep.foo.urls')),
  12.  
  13. # Uncomment the admin/doc line below to enable admin documentation:
  14. # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
  15.  
  16. # Uncomment the next line to enable the admin:
  17. # url(r'^admin/', include(admin.site.urls)),
  18. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement