diff --git a/src/pretix/plugins/badges/exporters.py b/src/pretix/plugins/badges/exporters.py index 56d816fdb2..8cee24d5f3 100644 --- a/src/pretix/plugins/badges/exporters.py +++ b/src/pretix/plugins/badges/exporters.py @@ -189,6 +189,14 @@ OPTIONS = OrderedDict([ 'offsets': [46 * mm, 46 * mm], 'pagesize': pagesizes.A4, }), + ('herma_88.9x33.87', { + 'name': 'HERMA 88,9 x 33,87 mm (4515)', + 'cols': 2, + 'rows': 8, + 'margins': [13.03 * mm, 12.29 * mm, 13.03 * mm, 12.29 * mm], + 'offsets': [96.52 * mm, 33.87 * mm], + 'pagesize': pagesizes.A4, + }), ('lyreco_70x36', { 'name': 'Lyreco 70 x 36 mm (143.344)', 'cols': 3, diff --git a/src/pretix/plugins/badges/templates.py b/src/pretix/plugins/badges/templates.py index de48e5d319..2293350ac5 100644 --- a/src/pretix/plugins/badges/templates.py +++ b/src/pretix/plugins/badges/templates.py @@ -234,4 +234,9 @@ TEMPLATES = { "pagesize": (40 * mm, 40 * mm), "layout": _simple_template(40 * mm, 40 * mm), }, + "88.9x33.87": { + "label": format_lazy(_("{width} x {height} mm label"), width=88.9, height=33.87), + "pagesize": (88.9 * mm, 33.87 * mm), + "layout": _simple_template(88.9 * mm, 33.87 * mm), + }, }