From b3cf473f52aa6fcbd3dda11a4ce1892f31f72e33 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Thu, 30 Mar 2017 02:01:38 +0000 Subject: [PATCH] Bug 18350: Moving call number in subscriptions tab in OPAC biblio detail This patches moves the call number up to be under the library name, so it is equivalent to the staff client To test: 1) Go to the detail page of a biblio with subscriptions in the staff client 2) Notice callnumber sits under the library name 3) Go to the detail page of the same biblio in OPAC 4) Notice callnumber is not in the same order 5) Apply patch, refresh page 6) Notice callnumber is now in same order Sponsored-by: Catalyst IT --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt index e4fb61f..d5c4f16 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -805,7 +805,9 @@ [% IF ( subscription.closed ) %]

This subscription is closed.

[% END %] - [% IF ( subscription.callnumber ) %]

Call number: [% subscription.callnumber %]

[% END %]
+ [% IF ( subscription.callnumber ) %] +

Call number: [% subscription.callnumber %]

+ [% END %] [% IF ( subscription.subscriptionnotes ) %]

[% subscription.subscriptionnotes FILTER html_line_break %]

[% END %] @@ -816,9 +818,6 @@ [% IF ( subscription.opacnote ) %]

[% subscription.opacnote FILTER html_line_break %]

[% END %] - [% IF ( subscription.callnumber ) %] -

Call number: [% subscription.callnumber %]

- [% END %] [% IF ( subscription.latestserials ) %]

The [% subscription.opacdisplaycount %] latest issues for this subscription:

-- 2.1.4