|
Lines 565-582
if ( $numBibsAvailable == 0 || $anyholdable == 0) {
Link Here
|
| 565 |
$template->param( none_available => 1 ); |
565 |
$template->param( none_available => 1 ); |
| 566 |
} |
566 |
} |
| 567 |
|
567 |
|
| 568 |
my $itemTableColspan = 9; |
|
|
| 569 |
if (! $template->{VARS}->{'OPACItemHolds'}) { |
| 570 |
$itemTableColspan--; |
| 571 |
} |
| 572 |
if (! $template->{VARS}->{'singleBranchMode'}) { |
| 573 |
$itemTableColspan--; |
| 574 |
} |
| 575 |
$itemTableColspan-- if !$show_holds_count && !$show_priority; |
| 576 |
my $show_notes=C4::Context->preference('OpacHoldNotes'); |
568 |
my $show_notes=C4::Context->preference('OpacHoldNotes'); |
| 577 |
$template->param(OpacHoldNotes=>$show_notes); |
569 |
$template->param(OpacHoldNotes=>$show_notes); |
| 578 |
$itemTableColspan-- if !$show_notes; |
|
|
| 579 |
$template->param(itemtable_colspan => $itemTableColspan); |
| 580 |
|
570 |
|
| 581 |
# display infos |
571 |
# display infos |
| 582 |
$template->param(bibitemloop => $biblioLoop); |
572 |
$template->param(bibitemloop => $biblioLoop); |
| 583 |
- |
|
|