From d94343273cac4554a1d83dc9e8eba52c74372f62 Mon Sep 17 00:00:00 2001 From: Terran McCanna Date: Mon, 4 Jan 2021 15:09:15 -0500 Subject: [PATCH] LP1908616 Add email display to hold edit Note: This is built atop the patch for LP1902265 This display's the current email address (or note if there is no address) on the Edit Hold page of My Account in the Bootstrap OPAC. Signed-off-by: Terran McCanna Signed-off-by: Garry Collum Signed-off-by: Galen Charlton --- Open-ILS/src/templates-bootstrap/opac/myopac/holds/edit.tt2 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates-bootstrap/opac/myopac/holds/edit.tt2 b/Open-ILS/src/templates-bootstrap/opac/myopac/holds/edit.tt2 index 603d9cfb6d..06755c6088 100755 --- a/Open-ILS/src/templates-bootstrap/opac/myopac/holds/edit.tt2 +++ b/Open-ILS/src/templates-bootstrap/opac/myopac/holds/edit.tt2 @@ -91,7 +91,11 @@
- + : + [% IF !ctx.user.email; + l('
No configured Email address. See "My Account" for setting your Email address.'); + ELSE; ctx.user.email; + END %]
-- 2.43.2