您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

urls.py 474B

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