View | Details | Raw Unified | Return to bug 7654
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-5 / +4 lines)
Lines 796-806 Link Here
796
                            <p>There are [% subscriptionsnumber %] subscription(s) associated with this title.</p>
796
                            <p>There are [% subscriptionsnumber %] subscription(s) associated with this title.</p>
797
                            [% FOREACH subscription IN subscriptions %]
797
                            [% FOREACH subscription IN subscriptions %]
798
                                [% IF ( subscription.branchcode ) %]
798
                                [% IF ( subscription.branchcode ) %]
799
                                    <h3>At library: [% Branches.GetName( subscription.branchname ) %]</h3>
799
                                    <h3>At library: [% Branches.GetName( subscription.branchcode ) %]</h3>
800
                                [% ELSE %]
801
                                    [% IF ( subscription.branchcode ) %]
802
                                        <h3>At library: [% subscription.branchcode %]</h3>
803
                                    [% END %]
804
                                [% END %]
800
                                [% END %]
805
                                [% IF ( subscription.closed ) %]
801
                                [% IF ( subscription.closed ) %]
806
                                    <p>This subscription is closed.</p>
802
                                    <p>This subscription is closed.</p>
Lines 816-821 Link Here
816
                                [% IF ( subscription.opacnote ) %]
812
                                [% IF ( subscription.opacnote ) %]
817
                                    <p>[% subscription.opacnote FILTER html_line_break %]</p>
813
                                    <p>[% subscription.opacnote FILTER html_line_break %]</p>
818
                                [% END %]
814
                                [% END %]
815
                                [% IF subscription.location_description || subscription.location %]
816
                                    <p>Location: [% IF subscription.location_description %][% subscription.location_description %][% ELSE %][% subscription.location %][% END %]</p>
817
                                [% END %]
819
                                [% IF ( subscription.callnumber ) %]
818
                                [% IF ( subscription.callnumber ) %]
820
                                  <p>Call number: [% subscription.callnumber %]</p>
819
                                  <p>Call number: [% subscription.callnumber %]</p>
821
                                [% END %]
820
                                [% END %]
(-)a/opac/opac-detail.pl (-1 / +2 lines)
Lines 569-574 foreach my $subscription (@subscriptions) { Link Here
569
    $cell{histenddate}       = $subscription->{histenddate};
569
    $cell{histenddate}       = $subscription->{histenddate};
570
    $cell{branchcode}        = $subscription->{branchcode};
570
    $cell{branchcode}        = $subscription->{branchcode};
571
    $cell{hasalert}          = $subscription->{hasalert};
571
    $cell{hasalert}          = $subscription->{hasalert};
572
    $cell{location}          = $subscription->{location};
573
    $cell{location_description} = $shelflocations->{ $subscription->{'location'} };
572
    $cell{callnumber}        = $subscription->{callnumber};
574
    $cell{callnumber}        = $subscription->{callnumber};
573
    $cell{closed}            = $subscription->{closed};
575
    $cell{closed}            = $subscription->{closed};
574
    #get the three latest serials.
576
    #get the three latest serials.
575
- 

Return to bug 7654