Django 1.10 TemplateSyntaxError。您是否忘记注册或加载此标记?

时间:2017-01-10 21:56:42

标签: python django templates django-templates

我正在尝试从我的静态文件夹加载css文件,并且“TemplateSyntaxError”显示在此行中:

Here is the code that I'm using to load a template

<!DOCTYPE html>

    

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

<title>{% block title %} Portuaria {% endblock %}</title>

And this is the error that I'm getting

我是否试图以错误的方式加载模板?

我正在使用django v 1.10

1 个答案:

答案 0 :(得分:2)

您需要在html文件的顶部添加此内容

{% load static %}