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

urls.py 422B

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. )