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 <tmccanna@georgialibraries.org>
Signed-off-by: Garry Collum <gcollum@gmail.com>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
<div class="form-check mt-3">
<input class="form-check-input" type="checkbox" name="email_notify" id="email_notify"
[% IF ahr.email_notify == 't' %] checked [% END %] />
- <label class="form-check-label" for="email_notify">[% l('Email notification') %]</label>
+ <label class="form-check-label" for="email_notify">[% l('Email notification') %]</label>:
+ [% IF !ctx.user.email;
+ l('<br>No configured Email address. See "My Account" for setting your Email address.');
+ ELSE; ctx.user.email;
+ END %]
</div>
<div class="form-group">