2014-12-21 42 views
0

我試圖做文本下面Django是有可能寫在外面子模板塊

{% block csslinks %} 
    <link rel="stylesheet" type="text/css" href="{% static 'hello/style.css' %}"> 
{% endblock %} 

我知道這是不可能的,但有什麼辦法?這是一個類似的問題在Django : Is it impossible to static tag into block tag?

我被建議那裏{% load staticfiles %} didn`t回答這裏寫什麼?

{% block csslinks %} 
    <link rel="stylesheet" type="text/css" href="what to write here to include css?"> 
{% endblock %} 
+0

* *什麼是不可能的,這是什麼都做與塊以外的文字? –

回答

2

我沒有與

{% block csslinks %} 
    <link rel="stylesheet" type="text/css" href="{% static 'hello/style.css' %}"> 
{% endblock %} 

只要{% load staticfiles %}是同一模板的頂部的任何問題..

相關問題