在我的django 0.96管理页面上,有一个“文档”链接,它带来了各种漂亮的内省功能。安装django 1.02后,我不再拥有此链接。我怎样才能找回来?
答案 0 :(得分:3)
您必须在urls.py和settings.py中更改一些内容:
来自urls.py的:
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^admin/', include(admin.site.urls)),
答案 1 :(得分:1)