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

(-)a/koha-tmpl/intranet-tmpl/prog/css/itemsearchform.css (+4 lines)
Lines 42-44 th select { Link Here
42
  width: 100%;
42
  width: 100%;
43
  font-weight: normal;
43
  font-weight: normal;
44
}
44
}
45
46
th#items_title {
47
  min-width: 12em;
48
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-14 / +13 lines)
Lines 239-257 Link Here
239
        function submitForm($form) {
239
        function submitForm($form) {
240
            var tr = ''
240
            var tr = ''
241
                + '    <tr>'
241
                + '    <tr>'
242
                + '      <th>' + _("Title") + '</th>'
242
                + '      <th id="items_title">' + _("Title") + '</th>'
243
                + '      <th>' + _("Publication date") + '</th>'
243
                + '      <th id="items_pubdate">' + _("Publication date") + '</th>'
244
                + '      <th>' + _("Publisher") + '</th>'
244
                + '      <th id="items_publisher">' + _("Publisher") + '</th>'
245
                + '      <th>' + _("Collection") + '</th>'
245
                + '      <th id="items_collection">' + _("Collection") + '</th>'
246
                + '      <th>' + _("Barcode") + '</th>'
246
                + '      <th id="items_barcode">' + _("Barcode") + '</th>'
247
                + '      <th>' + _("Call number") + '</th>'
247
                + '      <th id="items_callno">' + _("Call number") + '</th>'
248
                + '      <th>' + _("Home library") + '</th>'
248
                + '      <th id="items_homebranch">' + _("Home library") + '</th>'
249
                + '      <th>' + _("Current location") + '</th>'
249
                + '      <th id="items_holdingbranch">' + _("Current location") + '</th>'
250
                + '      <th>' + _("Shelving location") + '</th>'
250
                + '      <th id="items_location">' + _("Shelving location") + '</th>'
251
                + '      <th>' + _("Inventory number") + '</th>'
251
                + '      <th id="item_inventoryno">' + _("Inventory number") + '</th>'
252
                + '      <th>' + _("Status") + '</th>'
252
                + '      <th id="items_status">' + _("Status") + '</th>'
253
                + '      <th>' + _("Checkouts") + '</th>'
253
                + '      <th id="items_checkouts">' + _("Checkouts") + '</th>'
254
                + '      <th></th>'
254
                + '      <th id=""></th>'
255
                + '    </tr>'
255
                + '    </tr>'
256
            var table = ''
256
            var table = ''
257
                + '<table id="results">'
257
                + '<table id="results">'
258
- 

Return to bug 19348