我正在关注Django 教程的第 2 部分。我正在尝试覆盖管理模板 ( base_site.html
)
我将文件django/contrib/admin/templates
从mytemplates/admin/base_site.html
我还更新了 settings.py:
#Base Directory
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
#Template directories
TEMPLATE_DIRS = (os.path.join(BASE_DIR, 'mytemplates'),)
我尝试将 mytemplates 文件夹放在项目文件夹的根目录以及 mysite 文件夹中,但没有成功。任何指针都会很棒!