smrut.jpg

This commit is contained in:
2020-05-20 19:42:08 +02:00
commit 1f794a317c
18 changed files with 7839 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{% extends "label.html" %}
{% block css %}{{ super() }}
.shipping {
flex-direction: row;
align-items: initial;
}
.shipping .inner {
width: 6in;
height: 4in;
overflow: hidden;
}
.shipping .inner img {
height: 100%;
}
{% endblock %}
{% block content %}
{% for shipment in shipments %}
<div class="container shipping">
<div class="inner">
<img src="{{ shipment.labelSource }}" alt="label {{ shipment.id }}" />
</div>
</div>
{% endfor %}
{% endblock %}