我处于DEBUG状态,我想用PrinceXML将HTML页面渲染为PDF。
在我的主HTML中我有:
{% extends "base.html" %}
{% load staticfiles %}
{% load url from future %}
{% block title %}Title{% endblock %}
{% block style %}
{% include "style.html" %}
<link rel="stylesheet" type="text/css" href="{% static "more.style.css" %}"/>
{% endblock %}
{% block branding %}<a class='brand' rel="nofollow" href="{% url 'url' %}">Brand</a>{% endblock %}
{% block userlinks %}
{% if user.is_authenticated %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
{{ user }}
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="{% url 'generate-pdf' %}">Get the doc in pdf</a></li>
<li><a href="{% url 'dashboard.views.index' %}">Home</a></li>
<li><a href="{% url 'logout' %}">Logout</a></li>
</ul>
</li>
{% endif %}
{% endblock %}
我的style.html是生成PDF所需的princeXML信息:
@page {
margin-left: 0.8cm;
margin-right: 0.8cm;
margin-bottom: 2cm;
margin-top: 4cm;
@top-left {
margin-left: -0.6cm;
margin-right: -0.6cm;
content: url({% static "url" %});
}
@bottom-right {
border-top: solid 1px #bbb;
margin-top: 0.4cm;
vertical-align: middle;
font-size: 8pt;
content: counter(page) "/" counter(pages)
}
@bottom-center {
border-top: solid 1px #bbb;
margin-top: 0.4cm;
vertical-align: middle;
font-size: 8pt;
content: "{% now 'j.m.Y' %}"
}
@bottom-left {
border-top: solid 1px #bbb;
margin-top: 0.4cm;
padding-right: 2cm;
vertical-align: middle;
font-size: 8pt;
content: "footer info"
}
size: A4
}
html {
font-family: Arial, Verdana, Geneva, Helvetica, sans-serif ;
}
div.page-header {
page-break-before: always
}
我的问题是:当我将样式包含在已经{%load staticfiles%}的HTML中时,我是否需要在style.html中再次加载它?
我的猜测是肯定的,因为正如Django文档中所述,include将使用我的主html的上下文呈现style.html,但staticfiles库不是上下文的一部分。我是对的吗?
答案 0 :(得分:1)
来自Django docs:
include标记应被视为&#34; render的实现 这个子模板包括HTML&#34;,而不是&#34;解析这个子模板 并将其内容包含在内,就好像它是父母的一部分一样。这意味着 包含的模板之间没有共享状态 - 每个模板 include是一个完全独立的渲染过程。
所以,是的,您所包含的模板并不知道您的主HTML中发生了什么,所以您也应该在所包含的模板中加入staticfiles
。