From d8ded08a46d555a53cfab4ef17121fd32d414a14 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 9 May 2019 10:52:42 +0200 Subject: [PATCH] Checkin list PDF: Remove date from headline, it's in the page header now --- src/pretix/plugins/checkinlists/exporters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/plugins/checkinlists/exporters.py b/src/pretix/plugins/checkinlists/exporters.py index eb044729f1..7cd03a9db6 100644 --- a/src/pretix/plugins/checkinlists/exporters.py +++ b/src/pretix/plugins/checkinlists/exporters.py @@ -196,7 +196,7 @@ class PDFCheckinList(ReportlabExportMixin, CheckInListMixin, BaseExporter): story = [ Paragraph( - '{} – {}'.format(cl.name, (cl.subevent or self.event).get_date_from_display()), + cl.name, headlinestyle ), Spacer(1, 5 * mm)