Django - 未找到CSS路径

时间:2017-05-10 21:19:17

标签: css django

服务器运行时在控制台中输出:

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>

1 个答案:

答案 0 :(得分:0)

您应该在 base.html 中使用static模板标记:

修改

{% load static %}

<link rel="stylesheet" href="{% static "app1/css/bootstrap.css" %}" />