From 71a6cb92c2ba87fa8e8d307738bfc53fb5ebe552 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radek=20=C5=A0iman?= Date: Mon, 2 Mar 2020 23:53:49 +0100 Subject: [PATCH] Bug 24770: Show age of patron on circulation page This patch only adds new line containing age to the patron info 1) Navigate to a patron checkout page 2) No age is visible above "category" in patron's info above circ menu 3) Apply the patch 4) Reload this patron 5) Age is here and always visible regardless the active tab --- koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 1 + 1 file changed, 1 insertion(+) 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 95ace5e248..5d442a0e7d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc @@ -77,6 +77,7 @@ [% END %] [% END %] [% END %] +
  • Age: [% patron.get_age | html %] years
  • Category: [% patron.category.description | html %] ([% patron.categorycode | html %])
  • Home library: [% Branches.GetName( patron.branchcode ) | html %]
  • Borrowernumber: [% patron.borrowernumber | html %]
  • -- 2.11.0