Lines 1-5
Link Here
|
1 |
[% USE Koha %] |
1 |
[% USE Koha %] |
2 |
[% USE KohaDates %] |
2 |
[% USE KohaDates %] |
|
|
3 |
[% USE Branches %] |
3 |
[% USE AuthorisedValues %] |
4 |
[% USE AuthorisedValues %] |
4 |
[% SET TagsShowEnabled = ( TagsEnabled && TagsShowOnDetail ) %] |
5 |
[% SET TagsShowEnabled = ( TagsEnabled && TagsShowOnDetail ) %] |
5 |
[% SET TagsInputEnabled = ( opacuserlogin && TagsEnabled && TagsInputOnDetail ) %] |
6 |
[% SET TagsInputEnabled = ( opacuserlogin && TagsEnabled && TagsInputOnDetail ) %] |
Lines 1476-1486
YAHOO.util.Event.onContentReady("furtherm", function () {
Link Here
|
1476 |
<thead><tr> |
1477 |
<thead><tr> |
1477 |
[% IF ( item_level_itypes ) %]<th id="item_itemtype" class="itype">Item type</th>[% END %] |
1478 |
[% IF ( item_level_itypes ) %]<th id="item_itemtype" class="itype">Item type</th>[% END %] |
1478 |
[% IF ( OpacLocationBranchToDisplay == 'holding' || OpacLocationBranchToDisplay == 'both' || singleBranchMode ) %] |
1479 |
[% IF ( OpacLocationBranchToDisplay == 'holding' || OpacLocationBranchToDisplay == 'both' || singleBranchMode ) %] |
1479 |
<th>Current Location</th> |
1480 |
<th>Current location</th> |
1480 |
[% END %] |
1481 |
[% END %] |
1481 |
[% UNLESS ( singleBranchMode ) %] |
1482 |
[% UNLESS ( singleBranchMode ) %] |
1482 |
[% IF ( OpacLocationBranchToDisplay == 'home' || OpacLocationBranchToDisplay == 'both' ) %] |
1483 |
[% IF ( OpacLocationBranchToDisplay == 'home' || OpacLocationBranchToDisplay == 'both' ) %] |
1483 |
<th>Home Library</th> |
1484 |
<th>Home library</th> |
1484 |
[% END %] |
1485 |
[% END %] |
1485 |
[% END %] |
1486 |
[% END %] |
1486 |
[% IF ( itemdata_ccode ) %]<th id="item_ccode" class="collection">Collection</th>[% END %] |
1487 |
[% IF ( itemdata_ccode ) %]<th id="item_ccode" class="collection">Collection</th>[% END %] |
Lines 1524-1533
YAHOO.util.Event.onContentReady("furtherm", function () {
Link Here
|
1524 |
[% IF ( OpacLocationBranchToDisplay == 'home' || OpacLocationBranchToDisplay == 'both' ) %] |
1525 |
[% IF ( OpacLocationBranchToDisplay == 'home' || OpacLocationBranchToDisplay == 'both' ) %] |
1525 |
<td class="location_home"> |
1526 |
<td class="location_home"> |
1526 |
<span class="[% ITEM_RESULT.branch_opac_info ? 'branch-info-tooltip-trigger' : '' %]"> |
1527 |
<span class="[% ITEM_RESULT.branch_opac_info ? 'branch-info-tooltip-trigger' : '' %]"> |
1527 |
[% IF ( ITEM_RESULT.homebranchurl ) %] |
1528 |
[% IF ( Branches.GetURL( ITEM_RESULT.homebranch ) ) %] |
1528 |
<a href="[% ITEM_RESULT.homebranchurl %]">[% ITEM_RESULT.homebranchname %]</a> |
1529 |
<a href="[% Branches.GetURL( ITEM_RESULT.homebranch ) %]">[% Branches.GetName( ITEM_RESULT.homebranch ) %]</a> |
1529 |
[% ELSE %] |
1530 |
[% ELSE %] |
1530 |
[% ITEM_RESULT.homebranchname %] |
1531 |
[% Branches.GetName( ITEM_RESULT.homebranch ) %] |
1531 |
[% END %] |
1532 |
[% END %] |
1532 |
</span> |
1533 |
</span> |
1533 |
|
1534 |
|
1534 |
- |
|
|