gpt4 book ai didi

python - Bootstrap css 未加载到 Django 模板中

转载 作者:太空宇宙 更新时间:2023-11-04 00:53:14 25 4
gpt4 key购买 nike

当加载 base_html 时,所有 bootstrap css 都在加载:

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link rel="stylesheet" href="{% static "artdb/css/custom.css" %}">

但是当我想加载我的登录页面时,没有加载 css:

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<!-- Custom styles for this template -->
<link hrel="stylesheet" href="{% static "artdb/css/signin.css" %}">

我的 urls.py:

path('',TemplateView.as_view(template_name='artdb/base.html')),
path('signin/',TemplateView.as_view(template_name='artdb/signin.html')),

有什么想法吗?

我在两个文件中都有 {% load staticfiles %}。有任何想法吗?

最佳答案

在您的 sigin 页面中,将自定义样式引用从 hrel 更改为 rel

<link rel="stylesheet" href="{% static "artdb/css/signin.css" %}">

关于python - Bootstrap css 未加载到 Django 模板中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55432906/

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