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.

urls.py 228B

1234567891011
  1. from django.conf.urls.defaults import *
  2. from django.contrib import admin
  3. from oscar.app import shop
  4. admin.autodiscover()
  5. urlpatterns = patterns('',
  6. (r'^admin/', include(admin.site.urls)),
  7. (r'', include(shop.urls)),
  8. )