From b3d3df2fc806f6be60aa1d5df26518449fb5679b Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Thu, 23 Feb 2023 08:46:13 +0000 Subject: [PATCH] Bug 29449: Show userid on "Personal details" tab To reproduce: - Login to the OPAC - Go to the "Personal details" tab - Verify the Username/userid of the logged in user is not shown anywhere To test: - Apply this patch - Reload the "Personal details" tab - Verify that "Username:" and the userid is now shown below the "Library card number" - Try adding "userid" to PatronSelfModificationBorrowerUnwantedField and verify the field is hidden as expected - Log out - Go to "Don't have an account? Register here." - Verify "Username:" is *not* shown - Sign off Signed-off-by: Laura Escamilla Signed-off-by: Kyle M Hall --- .../opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt index b051a14c023..3d65cb70fae 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt @@ -236,6 +236,15 @@ [% END %] + [% IF action != 'new' %] + [% UNLESS hidden.defined('userid') %] +
  • + + [% borrower.userid | html %] +
  • + [% END %] + [% END %] + [% UNLESS hidden.defined('dateexpiry') %]
  • -- 2.30.2