mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Fix checkin-list pdf export subevent time formatting (#2022)
This commit is contained in:
@@ -276,7 +276,7 @@ class PDFCheckinList(ReportlabExportMixin, CheckInListMixin, BaseExporter):
|
||||
story += [
|
||||
Spacer(1, 3 * mm),
|
||||
Paragraph(
|
||||
'{} ({} {})'.format(cl.subevent.name, cl.subevent.get_date_range_display(), date_format(cl.subevent.date_from, 'SHORT_TIME_FORMAT')),
|
||||
'{} ({} {})'.format(cl.subevent.name, cl.subevent.get_date_range_display(), date_format(cl.subevent.date_from, 'TIME_FORMAT')),
|
||||
self.get_style()
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user