Advertisement
pulkit

urls.py

Oct 14th, 2011
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.60 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.     url(r'',include('pages.urls')),
  9.     # Examples:
  10.     # url(r'^$', 'prkt.views.home', name='home'),
  11.     # url(r'^prkt/', include('prkt.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.    
  19. )
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement