在django-easy-pdf中是否有办法在打印的每一页上包含表格标题?
<table>
<tr>
<th> First Name </th><th> Last Name</th> <!--I want this on each page of pdf -->
</tr>
{% for employee in employees %}
<tr>
<td> {{ employee.first_name}} </td><td> {{ employee.last_name}}</td>
</tr>
{% endfor %}
</table>
答案 0 :(得分:0)
我最近碰到了这个问题,修复工作非常简单。将标题分组到thead
元素中,然后在模板中添加以下CSS。
@media print {
thead {
display: table-header-group;
}
}
&#13;