为什么我在django 1.0管理页面中没有文档链接?

时间:2009-03-20 12:51:12

标签: django django-admin

在我的django 0.96管理页面上,有一个“文档”链接,它带来了各种漂亮的内省功能。安装django 1.02后,我不再拥有此链接。我怎样才能找回来?

2 个答案:

答案 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)