django版本为1.5.1
我有两个模板,base.html和index.html,index.html继承自base.html,css文件放在root/static/css目录下。
为了在index.html中引入另外一个CSS文件,我在base.html中加入了一个{% block extracss %}{% endblock %}
然后在index.html中加入{% block extracss %} <link href="{% static 'css/other.css' %}" rel="stylesheet" /> {% endblock %}
但是运行的时候报错了Invalid block tag: 'static', expected 'endblock'
看来在block之中不能出现static,请问要怎么在模板中使用block引入新的css(或其他的静态文件)?
www说