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

(-)a/koha-tmpl/opac-tmpl/ccsr/en/css/mobile.css (-1 / +1 lines)
Lines 498-504 body#opac-holds #bibitemloop>tbody>tr:not(.copiesrow) td.expiration_date:before Link Here
498
body#opac-holds #bibitemloop>tbody>tr:not(.copiesrow) td.place_on_type:before {content: "Place On : ";}
498
body#opac-holds #bibitemloop>tbody>tr:not(.copiesrow) td.place_on_type:before {content: "Place On : ";}
499
body#opac-holds #bibitemloop>tbody>tr:not(.copiesrow) td.branch:before {content: "Pickup Location : ";}
499
body#opac-holds #bibitemloop>tbody>tr:not(.copiesrow) td.branch:before {content: "Pickup Location : ";}
500
500
501
body#opac-holds #bibitemloop table td.copy:before {content: "Copy : ";}
501
body#opac-holds #bibitemloop table td.copynumber:before {content: "Copy Number : ";}
502
body#opac-holds #bibitemloop table td.itype:before {content: "Item Type : ";}
502
body#opac-holds #bibitemloop table td.itype:before {content: "Item Type : ";}
503
body#opac-holds #bibitemloop table td.barcode:before {content: "Barcode : ";}
503
body#opac-holds #bibitemloop table td.barcode:before {content: "Barcode : ";}
504
body#opac-holds #bibitemloop table td.homebranch:before {content: "Home Library : ";}
504
body#opac-holds #bibitemloop table td.homebranch:before {content: "Home Library : ";}
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-course-details.tt (-1 / +1 lines)
Lines 43-49 Link Here
43
                        <th>Location</th>
43
                        <th>Location</th>
44
                        <th>Collection</th>
44
                        <th>Collection</th>
45
                        <th>Call number</th>
45
                        <th>Call number</th>
46
                        <th>Copy</th>
46
                        <th>Copy number</th>
47
                        <th>Status</th>
47
                        <th>Status</th>
48
                        <th>Date due</th>
48
                        <th>Date due</th>
49
                        <th>Notes</th>
49
                        <th>Notes</th>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt (-1 / +1 lines)
Lines 1509-1515 YAHOO.util.Event.onContentReady("furtherm", function () { Link Here
1509
            <th id="item_callnumber" class="call_no">Call number</th>
1509
            <th id="item_callnumber" class="call_no">Call number</th>
1510
            [% IF ( itemdata_enumchron ) %]<th id="item_enumchron" class="vol_info">Vol info</th>[% END %]
1510
            [% IF ( itemdata_enumchron ) %]<th id="item_enumchron" class="vol_info">Vol info</th>[% END %]
1511
            [% IF ( itemdata_uri ) %]<th id="item_url" class="url">url</th>[% END %]
1511
            [% IF ( itemdata_uri ) %]<th id="item_url" class="url">url</th>[% END %]
1512
            [% IF ( itemdata_copynumber ) %]<th id="item_copy" class="copynumber">Copy</th>[% END %]
1512
            [% IF ( itemdata_copynumber ) %]<th id="item_copy" class="copynumber">Copy number</th>[% END %]
1513
            <th id="item_status" class="status">Status</th>
1513
            <th id="item_status" class="status">Status</th>
1514
            [% IF ( itemdata_itemnotes ) %]<th id="item_notes" class="notes">Notes</th>[% END %]
1514
            [% IF ( itemdata_itemnotes ) %]<th id="item_notes" class="notes">Notes</th>[% END %]
1515
            <th id="item_datedue" class="date_due">Date due</th>
1515
            <th id="item_datedue" class="date_due">Date due</th>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt (-3 / +2 lines)
Lines 469-475 Link Here
469
                        <table class="copiesrow" id="copiesrow_[% bibitemloo.biblionumber %]">
469
                        <table class="copiesrow" id="copiesrow_[% bibitemloo.biblionumber %]">
470
                          <caption>Select a specific copy:</caption>
470
                          <caption>Select a specific copy:</caption>
471
                          <tr>
471
                          <tr>
472
                            <th>Copy</th>
472
                            <th>Copy number</th>
473
                            [% IF ( item_level_itypes ) %]
473
                            [% IF ( item_level_itypes ) %]
474
                              <th>Item type</th>
474
                              <th>Item type</th>
475
                            [% END %]
475
                            [% END %]
Lines 487-493 Link Here
487
487
488
                          [% FOREACH itemLoo IN bibitemloo.itemLoop %]
488
                          [% FOREACH itemLoo IN bibitemloo.itemLoop %]
489
                            <tr class="[% itemLoo.backgroundcolor %]">
489
                            <tr class="[% itemLoo.backgroundcolor %]">
490
                              <td class="copy">
490
                              <td class="copynumber">
491
                                [% IF ( itemLoo.available ) %]
491
                                [% IF ( itemLoo.available ) %]
492
                                  <input type="radio" class="checkitem checkitem_[% bibitemloo.biblionumber %]" name="checkitem_[% bibitemloo.biblionumber %]"
492
                                  <input type="radio" class="checkitem checkitem_[% bibitemloo.biblionumber %]" name="checkitem_[% bibitemloo.biblionumber %]"
493
                                         value="[% itemLoo.itemnumber %]" />
493
                                         value="[% itemLoo.itemnumber %]" />
494
- 

Return to bug 11649