答案 0 :(得分:1)
你可以改变它......
创建模板文件夹,然后在django/contrib/admin/templates/admin
your-project
|
|__app1
|
|__app2
|
|__template
|
|__admin
|
|__index.html
请准确说明你的virtualenv ...
cp ../venv/lib/python2.7/site-packages/django/contrib/admin/templates/admin/index.html template/admin/
现在你可以改变你想要的任何东西......
注意:还有一件事不要忘记更新设置。这样的示例
'DIRS': [
os.path.join(BASE_DIR, 'templates'),
],