From 4e29bdc3a0b1652f2d02ddf978f25fd3f86d261c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 5 Jun 2023 13:06:39 +0000 Subject: [PATCH] Bug 33892: Use template wrapper for tabs: OPAC authority detail This patch updates the OPAC authority detail page so that it uses the new WRAPPER syntax to generate tabs markup. To test, apply the patch and locate an authority record in the OPAC which has notes fields. When viewing the details for that record the notes should appear in a single "Notes" tab. Signed-off-by: Sam Lau Signed-off-by: Lucas Gass Signed-off-by: Tomas Cohen Arazi (cherry picked from commit afd30b8f4d11c36c86f26a8d5849c7990297f265) Signed-off-by: Matt Blenkinsop --- .../bootstrap/en/modules/opac-auth-detail.tt | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt index 4711b0f1ac..c88c70a139 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt @@ -162,22 +162,23 @@ [% END # / IF MARCURLS %] [% END %] -
- -
-
+ [% WRAPPER tabs id= "authdescriptions" %] + [% WRAPPER tabs_nav %] + [% WRAPPER tab_item tabname= "tab_descriptions" bt_active= 1 %] + Notes + [% END %] + [% END # /WRAPPER tabs_nav %] + [% WRAPPER tab_panels %] + [% WRAPPER tab_panel tabname="tab_descriptions" bt_active= 1 %]
[% FOREACH note IN summary.notes %]

[% note.note | html %]

[% END %]
-
-
-
+ [% END # /tab_panel# %] + [% END # /WRAPPER tab_panels %] + [% END # /WRAPPER tabs#authdescriptions %] + [% IF Koha.Preference( 'OPACAuthorIdentifiers' ) && author_identifiers.size %] -- 2.39.2