2013-03-14 76 views

回答

3

base.html文件

<html> 
<head> 
    <title>{% block title %}{% endblock %}</title> 
    {% block css %}{% endblock css %} 
</head> 
<body> 
    {% block content %}{% endblock content %} 
</body> 
</html> 

其他模板

{% extends "base.html" %} 

{% block css %} 
    {{block.super}} 
    //css here 
{% endblock css %} 

{% block content %} 
<p>Here I need to use another css file (not the same like on base.html)</p> 

{% endblock content %} 
相关问题