19 lines
746 B
Django/Jinja
19 lines
746 B
Django/Jinja
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
html { font-family: Arial, sans-serif; font-size: 8px; color: #718087; margin: 0 14mm; -webkit-print-color-adjust: exact; }
|
|
body { margin: 0; }
|
|
.footer { width: 100%; padding-top: 3mm; border-top: 1px solid #dfe5e8; display: flex; justify-content: space-between; align-items: center; }
|
|
.page { font-weight: 700; color: {{ data.design.primary_color }}; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="footer">
|
|
<span>{{ data.customer.name }} · {{ data.report.period.label }} · Template {{ data.report.template_version }}</span>
|
|
<span class="page">Seite <span class="pageNumber"></span> / <span class="totalPages"></span></span>
|
|
</div>
|
|
</body>
|
|
</html>
|