From 72f06da800eb727abc199be1cc806b449251add0 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 6 Jan 2024 19:57:04 +0000 Subject: [PATCH] Bug 35300: Add page-section to invoice files page To test: * Enable AcqEnableFiles system preference * Go to acquisitions * Search for a vendor and receive shipment * Enter an invoice number and create new invoice * Finish receive * Click on 'manage invice files' link * Upload a sample file * Verify the table is missing the usual white background * Apply patch * Verify the the table now displays with the usual white background --- .../prog/en/modules/acqui/invoice-files.tt | 58 ++++++++++--------- 1 file changed, 30 insertions(+), 28 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice-files.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice-files.tt index 7411687e6f..2734388f91 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice-files.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice-files.tt @@ -51,34 +51,36 @@ [% END %] [% IF files %] - - - - - - - - - - - - - - [% FOREACH f IN files %] - - - - - - - - - - [% END %] - -
NameTypeDescriptionUploadedBytes  
[% f.file_name | html %][% f.file_type | html %][% f.file_description | html %] - [% f.date_uploaded | $KohaDates %] - [% f.file_size | html %]DeleteDownload
+
+ + + + + + + + + + + + + + [% FOREACH f IN files %] + + + + + + + + + + [% END %] + +
NameTypeDescriptionUploadedBytes  
[% f.file_name | html %][% f.file_type | html %][% f.file_description | html %] + [% f.date_uploaded | $KohaDates %] + [% f.file_size | html %]DeleteDownload
+
[% ELSE %]

This invoice has no files attached.

-- 2.30.2