mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-31 00:04:40 +02:00
27 lines
No EOL
1 KiB
Twig
27 lines
No EOL
1 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ meta_title }}</title>
|
|
<meta name="author" content="{{ partdb_title }}">
|
|
<meta name="description" content="Label for {{ meta_title }}">
|
|
<meta name="keywords" content="Part-DB, Label, Barcode">
|
|
<style>
|
|
{% include("LabelSystem/labels/label_style.css.twig") %}
|
|
{{ options.additionalCss | escape("html") }}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% for element in elements %}
|
|
<div style="page-break-inside: avoid; page-break-before: avoid; {% if not loop.last %}page-break-after: always;{% endif %}">
|
|
{% if options.barcodeType == 'none' %}
|
|
{% include "LabelSystem/labels/label_page_none.html.twig" %}
|
|
{% elseif options.barcodeType in ['qr', 'datamatrix'] %}
|
|
{% include "LabelSystem/labels/label_page_qr.html.twig" %}
|
|
{% elseif options.barcodeType in ['code39', 'code93', 'code128'] %}
|
|
{% include "LabelSystem/labels/label_page_1d.html.twig" %}
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</body>
|
|
</html> |