You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. from django.conf.urls.defaults import *
  2. from django.contrib import admin
  3. admin.autodiscover()
  4. urlpatterns = patterns('',
  5. # Example:
  6. # (r'^oscar/', include('oscar.foo.urls')),
  7. # Uncomment the admin/doc line below to enable admin documentation:
  8. # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
  9. # Uncomment the next line to enable the admin:
  10. (r'^admin/', include(admin.site.urls)),
  11. )