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 Followed test plan, works as expected. Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
b8b5989292
commit
fbc072d7a5
1 changed files with 3 additions and 4 deletions
|
@ -817,7 +817,9 @@
|
|||
[% IF ( subscription.closed ) %]
|
||||
<p>This subscription is closed.</p>
|
||||
[% END %]
|
||||
<span style="display:none;"> [% IF ( subscription.callnumber ) %]<p>Call number: [% subscription.callnumber %]</p>[% END %]</span>
|
||||
[% IF ( subscription.callnumber ) %]
|
||||
<p>Call number: [% subscription.callnumber %]</p>
|
||||
[% END %]
|
||||
[% IF ( subscription.subscriptionnotes ) %]
|
||||
<p>[% subscription.subscriptionnotes FILTER html_line_break %] </p>
|
||||
[% END %]
|
||||
|
@ -839,9 +841,6 @@
|
|||
[% IF ( subscription.opacnote ) %]
|
||||
<p>[% subscription.opacnote FILTER html_line_break %]</p>
|
||||
[% END %]
|
||||
[% IF ( subscription.callnumber ) %]
|
||||
<p>Call number: [% subscription.callnumber %]</p>
|
||||
[% END %]
|
||||
[% IF ( subscription.latestserials ) %]
|
||||
<p> The [% subscription.opacdisplaycount %] latest issues for this subscription:</p>
|
||||
<table class="table table-bordered table-striped">
|
||||
|
|
Loading…
Reference in a new issue