Files
Fulfillment-Backend/templates/documents/deal/deal.html

49 lines
1.3 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="/static/js/JsBarcode.all.min.js"></script>
<title>Сделка</title>
<style>
@page :first {
@top-right {
margin-bottom: 0;
}
}
@page {
@bottom-right {
content: counter(page);
margin-right: 20px;
font-size: 18px;
}
@top-right {
content: "ID:{{ data.deal.id }}";
border: solid black 1px;
border-radius: 6px;
padding: 12px 2px;
margin-top: 50px;
margin-right: 28px;
margin-bottom: 10px;
}
}
</style>
</head>
<body>
<div class="doc-container">
<div>
<div>
{% include "deal/deal-services.html" %}
{% for product_data in data.products.values() %}
{% with index = loop.index %}
{% include "deal/deal-product-services.html" %}
{% endwith %}
{% endfor %}
</div>
</div>
</div>
</body>
</html>