|
Lines 117-132
Link Here
|
| 117 |
<caption class="sr-only">Checkout history</caption> |
117 |
<caption class="sr-only">Checkout history</caption> |
| 118 |
<thead> |
118 |
<thead> |
| 119 |
<tr> |
119 |
<tr> |
| 120 |
<th style="display:none;" class="no-export">Type</th> |
120 |
<th data-colname="type" style="display:none;" class="no-export">Type</th> |
| 121 |
<th class="no-sort no-export"></th> |
121 |
<th class="no-sort no-export"></th> |
| 122 |
<th class="all anti-the">Title</th> |
122 |
<th data-colname="title" class="all anti-the">Title</th> |
| 123 |
<th>Author</th> |
123 |
<th data-colname="author">Author</th> |
| 124 |
<th>Item type</th> |
124 |
<th data-colname="item_type">Item type</th> |
| 125 |
<th>Call number</th> |
125 |
<th data-colname="callnumber">Call number</th> |
| 126 |
<th>Vol info</th> |
126 |
<th data-colname="vol_info">Vol info</th> |
| 127 |
<th>Date</th> |
127 |
<th data-colname="date">Date</th> |
| 128 |
[% IF Koha.Preference('OPACMySummaryHTML') %] |
128 |
[% IF Koha.Preference('OPACMySummaryHTML') %] |
| 129 |
<th class="no-sort no-export">Links</th> |
129 |
<th data-colname="links" class="no-sort no-export">Links</th> |
| 130 |
[% END %] |
130 |
[% END %] |
| 131 |
<th class="dtr-control-col"></th> |
131 |
<th class="dtr-control-col"></th> |
| 132 |
</tr> |
132 |
</tr> |
|
Lines 215-220
Link Here
|
| 215 |
<em>(Checked out)</em> |
215 |
<em>(Checked out)</em> |
| 216 |
</td> |
216 |
</td> |
| 217 |
[% END %] |
217 |
[% END %] |
|
|
218 |
<td> [% checkout.library.branchname | html %] </td> |
| 218 |
[% IF Koha.Preference('OPACMySummaryHTML') %] |
219 |
[% IF Koha.Preference('OPACMySummaryHTML') %] |
| 219 |
<td>[% biblio.opac_summary_html | $raw %]</td> |
220 |
<td>[% biblio.opac_summary_html | $raw %]</td> |
| 220 |
[% END %] |
221 |
[% END %] |
|
Lines 235-240
Link Here
|
| 235 |
$('#sortform').submit(); |
236 |
$('#sortform').submit(); |
| 236 |
}); |
237 |
}); |
| 237 |
|
238 |
|
|
|
239 |
var table_settings = [% TablesSettings.GetTableSettings( 'opac', 'patron_details', 'readingrec', 'json') | $raw %]; |
| 238 |
var table = $("#readingrec").kohaTable( |
240 |
var table = $("#readingrec").kohaTable( |
| 239 |
{ |
241 |
{ |
| 240 |
dom: '<"top"<"table_entries"i><"table_controls"fB>>t', |
242 |
dom: '<"top"<"table_entries"i><"table_controls"fB>>t', |
|
Lines 250-255
Link Here
|
| 250 |
{ visible: false, targets: [0] }, |
252 |
{ visible: false, targets: [0] }, |
| 251 |
], |
253 |
], |
| 252 |
}, |
254 |
}, |
|
|
255 |
table_settings |
| 253 |
); |
256 |
); |
| 254 |
|
257 |
|
| 255 |
let table_dt = table.DataTable(); |
258 |
let table_dt = table.DataTable(); |
| 256 |
- |
|
|