From 7e5f5893ed6e0c8955fe7e240ef2ef67820d497b Mon Sep 17 00:00:00 2001 From: Lari Strand Date: Tue, 19 Aug 2025 11:56:18 +0300 Subject: [PATCH] Bug 33647: (follow-up) Add UI improvements Use colon for Updated on and Last seen on texts If lastseen value doesn't exist, show the text 'Never' in UI --- koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc index 0a04b64445..f9dd3920d7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc @@ -151,11 +151,15 @@
  • Home library: [% Branches.GetName( patron.branchcode ) | html %]
  • Borrowernumber: [% patron.borrowernumber | html %]
  • - Updated on [% patron.updated_on | $KohaDates with_hours => 1 %] + Updated on: [% patron.updated_on | $KohaDates with_hours => 1 %]
  • [% IF ( patron.lastseen ) %]
  • - Last seen on [% patron.lastseen | $KohaDates with_hours => 1 %] + Last seen on: [% patron.lastseen | $KohaDates with_hours => 1 %] +
  • + [% ELSE %] +
  • + Last seen on: Never
  • [% END %] [% IF patron.account_locked %] -- 2.34.1