covid-formity/templates/shipping_label.html

28 lines
534 B
HTML

{% 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 model_labels scoped %}
{% if interleaved %}{{ super() }}{% endif %}
{% for shipment in model.shipping_info %}
<div class="container shipping">
<div class="inner">
<img src="{{ shipment['labelSource'] }}" alt="label {{ model.id }}" />
</div>
</div>
{% endfor %}
{% endblock %}