Adds 'A3' as report size option (#5733)

This commit is contained in:
Oliver 2023-10-18 14:27:07 +11:00 committed by GitHub
parent fda909ac59
commit cb33705e44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@ def report_page_size_options():
"""Returns a list of page size options for PDF reports."""
return [
('A4', _('A4')),
('A3', _('A3')),
('Legal', _('Legal')),
('Letter', _('Letter')),
]