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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/spinelabel-print.tt (-1 / +1 lines)
Lines 21-27 Link Here
21
            </div>
21
            </div>
22
	[% ELSE %]
22
	[% ELSE %]
23
            <body id="labels_spinelabel-print" class="tools labels">
23
            <body id="labels_spinelabel-print" class="tools labels">
24
            <div id="spinelabel">
24
            <div id="spinelabel" data-homebranch="[% itemhomebranch | html %]" data-holdingbranch="[% itemholdingbranch | html %]">
25
				[% content | $raw %]
25
				[% content | $raw %]
26
            </div>
26
            </div>
27
            <div id="print_button" class="noprint">
27
            <div id="print_button" class="noprint">
(-)a/labels/spinelabel-print.pl (-1 / +4 lines)
Lines 82-87 while ( my ( $key, $value ) = each(%$data) ) { Link Here
82
82
83
$body = $scheme;
83
$body = $scheme;
84
84
85
$template->param(
86
        'itemhomebranch' => $item->{homebranch},
87
        'itemholdingbranch' => $item->{holdingbranch}
88
);
85
$template->param( autoprint => C4::Context->preference("SpineLabelAutoPrint") );
89
$template->param( autoprint => C4::Context->preference("SpineLabelAutoPrint") );
86
$template->param( content   => $body );
90
$template->param( content   => $body );
87
91
88
- 

Return to bug 31633