我有以下 base.html
{% load static from staticfiles %}
<html>
<title>COOL| {% block title %} Sometitle {% endblock %}</title>
<body>
<!--- BEGIN INSERT CONTENT FOR OTHER PAGE HERE-->
{% block 'body' %}
{% endblock %}
我有 somefile.html ,它们被上面包含。
{% extends 'base.html'%}
{% block title %} Contact {% endblock %}
{% block 'body' %}
<h1> <a href="{%static "files/somefile.csv" %}">CSV</a> </h1>
{% endblock %}
我得到的信息是:
Invalid block tag: 'static', expected 'endblock'
我希望somefile.html
将从{% load static from staticfiles %}
继承base.html
。但它并没有。什么是正确的方法?
答案 0 :(得分:6)
您应该在每个模板中加载标记。