Lines 214-224
Link Here
|
214 |
<caption>Checkouts for [% borrowername %] <span class="count">([% issues_count %] total)</span></caption> |
214 |
<caption>Checkouts for [% borrowername %] <span class="count">([% issues_count %] total)</span></caption> |
215 |
<!-- ISSUES TABLE ROWS --> |
215 |
<!-- ISSUES TABLE ROWS --> |
216 |
<thead> |
216 |
<thead> |
217 |
<tr><th class="anti-the">Title</th><th>Call no.</th><th class="title-string">Due</th><th class="nosort">Renew</th>[% UNLESS ( nofines ) %]<th>Fines</th>[% END %]</tr> |
217 |
<tr> |
|
|
218 |
<th class="no-show">Checked out on</th> |
219 |
<th class="anti-the">Title</th> |
220 |
<th>Call no.</th> |
221 |
<th class="title-string">Due</th> |
222 |
<th class="nosort">Renew</th> |
223 |
[% UNLESS ( nofines ) %] |
224 |
<th>Fines</th> |
225 |
[% END %] |
226 |
</tr> |
218 |
</thead> |
227 |
</thead> |
219 |
<tbody> |
228 |
<tbody> |
220 |
[% FOREACH ISSUE IN ISSUES %] |
229 |
[% FOREACH ISSUE IN ISSUES %] |
221 |
<tr> |
230 |
<tr> |
|
|
231 |
<td>[% ISSUE.issuedate %]</td> |
222 |
<td> |
232 |
<td> |
223 |
[% UNLESS ( noitemlinks ) %] |
233 |
[% UNLESS ( noitemlinks ) %] |
224 |
<a href="/cgi-bin/koha/opac-detail.pl?bib=[% ISSUE. biblionumber %]">[% ISSUE.title |html %]</a> |
234 |
<a href="/cgi-bin/koha/opac-detail.pl?bib=[% ISSUE. biblionumber %]">[% ISSUE.title |html %]</a> |
Lines 348-356
Link Here
|
348 |
dofocus(); |
358 |
dofocus(); |
349 |
[% IF ( patronid ) %]sco_init();[% END %] |
359 |
[% IF ( patronid ) %]sco_init();[% END %] |
350 |
$("#loanTable").dataTable($.extend(true, {}, dataTablesDefaults, { |
360 |
$("#loanTable").dataTable($.extend(true, {}, dataTablesDefaults, { |
351 |
"aaSorting": [ [2, "desc"], [0, "asc"] ], |
361 |
"aaSorting": [ 0 ], |
352 |
"aoColumnDefs": [ |
362 |
"aoColumnDefs": [ |
353 |
{ "aTargets": [ "nosort" ],"bSortable": false,"bSearchable": false }, |
363 |
{ "aTargets": [ "nosort" ], "bSortable": false, "bSearchable": false }, |
|
|
364 |
{ "aTargets": [ "no-show" ], "bVisible": false, "bSearchable": false }, |
354 |
{ "sType": "anti-the", "aTargets" : [ "anti-the" ] }, |
365 |
{ "sType": "anti-the", "aTargets" : [ "anti-the" ] }, |
355 |
{ "sType": "title-string", "aTargets" : [ "title-string" ] } |
366 |
{ "sType": "title-string", "aTargets" : [ "title-string" ] } |
356 |
] |
367 |
] |
357 |
- |
|
|