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