摘要:
Django站点管理 管理工具其实就是一个Django应用程序,包含自己的模块、模板、视图和 URLpatterns。 我们要像添加自己的视图一样,把它添加到URLconf里面。 我们可以在Django基本代码中的django/contrib/admin 目录下,检查它的模板、视图和URLpatterns。 当服务启动时,Django从url.py引导URLconf,然后执行admin.autod... 阅读全文
摘要:
Python Django 在配置完Admin管理界面后,用super admin登录管理界面显示:"You don't have permission to edit anything"查文档发现:Above we used admin.autodiscover() to automatically load theINSTALLED_APPS admin.py modules.很明显Djang... 阅读全文