gpt4 book ai didi

django - 在 django admin 中设置 favicon

转载 作者:行者123 更新时间:2023-12-02 09:07:31 25 4
gpt4 key购买 nike

我需要为 django 管理界面设置一个图标。

最好在全局范围内执行此操作,而不覆盖所有应用程序的模板。

最干净的方法是什么?我尝试在 Django 文档中搜索此内容,但一无所获。

最佳答案

为了避免复制原始文件的任何内容,您实际上可以在扩展模板时覆盖该模板 ( docs )。因此,创建您自己的 template/admin/base_site.html:

{% extends "admin/base_site.html" %}
{% load static %}
{% block extrahead %}
<link rel="shortcut icon" href="{% static 'yourapp/img/favicon.ico' %}" />
{% endblock %}

关于django - 在 django admin 中设置 favicon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34959897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com