本文主要是介绍8、Django Admin后台中添加Logo,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在项目settings.py文件
# 导入os,并且修改'DIRS'内容如下所示
import os
TEMPLATES = [{'BACKEND': 'django.template.backends.django.DjangoTemplates','DIRS': [os.path.join(BASE_DIR, 'templates/')],'APP_DIRS': True,'OPTIONS': {'context_processors': ['django.template.context_processors.debug','django.template.context_processors.request','django.contrib.auth.context_processors.auth','django.contrib.messages.context_processors.messages',],},},
]
找到django项目中的模板文件,路径中包括django\contrib\admin\templates\admin,我的文件是在
E:\Django\study\20240828\venv\Lib\site-packages\django\contrib\admin\templates\admin
找到base_site.html复制到项目目录templates\admin,添加LOGO的文件
所增加的文件及路径如下所示:
修改base_site.html,我这里注释掉原代码,添加了以下h1标签代码
{% extends "admin/base.html" %}{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}{% block branding %}{% comment %} <h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1> {% endcomment %}<h1 id="site-name"><a href="{% url 'admin:index' %}"><img src="/static/images/head.jpg" alt="Your Site Logo" height="50px">我的管理网站</a></h1>
{% endblock %}{% block nav-global %}{% endblock %}
显示效果:
这篇关于8、Django Admin后台中添加Logo的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!