From 4c31b4b190403ee3795d56e63e67aad543ab11b1 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 https://bugs.koha-community.org/show_bug.cgi?id=32922 --- .../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 04c8c3e655..15a5756c8c 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.34.1