From 83a4ca0ad5b171550278c9c2a5b21eb48362238c Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 14 Mar 2025 20:26:27 -0500 Subject: [PATCH] receipts/view: Display PDFs in iframe PDF attachments can now be shown on the receipt view page in an `iframe`. --- templates/receipt.html.tera | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/templates/receipt.html.tera b/templates/receipt.html.tera index c20449e..e48bb8b 100644 --- a/templates/receipt.html.tera +++ b/templates/receipt.html.tera @@ -11,9 +11,18 @@ margin-right: 1em; } + .photo { + flex-grow: 1; + } + .photo img { max-width: 100%; } + + .photo iframe { + width: 100%; + aspect-ratio: 8.5 / 11; + } } {% endblock %} {% block main %} @@ -52,7 +61,11 @@

+{% if filename is ending_with(".pdf") %} + +{% else %} +{% endif %}