服务器运行时在控制台中输出:
Not Found: /css/bootstrap.css
我很确定我的路径是错误的,但我不知道给定项目结构的路径是什么(下图)。
settings.py:
STATIC_URL = '/static/'
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',
],
},
},
]
项目树:
Grand Folder
app1
settings.py
static
app1
css
bootstrap.css
app2
app3
templates
base.html
base.html文件:
{% load i18n %}
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="{{ STATIC_URL }}/css/bootstrap.css" />
<title>{% block title %}User test{% endblock %}</title>
</head>
答案 0 :(得分:0)
您应该在 base.html 中使用static
模板标记:
修改强>
{% load static %}
<link rel="stylesheet" href="{% static "app1/css/bootstrap.css" %}" />