2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 03:25:42 +00:00

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

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')),
]