@@ -, +, @@ (SCO) confusing for patrons make sure you don't check them out in alphabetical order you checked them out in with the last on top and the first on bottom --- .../opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -214,11 +214,21 @@ Checkouts for [% borrowername %] ([% issues_count %] total) - TitleCall no.DueRenew[% UNLESS ( nofines ) %]Fines[% END %] + + Checked out on + Title + Call no. + Due + Renew + [% UNLESS ( nofines ) %] + Fines + [% END %] + [% FOREACH ISSUE IN ISSUES %] + [% ISSUE.issuedate %] [% UNLESS ( noitemlinks ) %] [% ISSUE.title |html %] @@ -348,9 +358,10 @@ dofocus(); [% IF ( patronid ) %]sco_init();[% END %] $("#loanTable").dataTable($.extend(true, {}, dataTablesDefaults, { - "aaSorting": [ [2, "desc"], [0, "asc"] ], + "aaSorting": [ 0 ], "aoColumnDefs": [ - { "aTargets": [ "nosort" ],"bSortable": false,"bSearchable": false }, + { "aTargets": [ "nosort" ], "bSortable": false, "bSearchable": false }, + { "aTargets": [ "no-show" ], "bVisible": false, "bSearchable": false }, { "sType": "anti-the", "aTargets" : [ "anti-the" ] }, { "sType": "title-string", "aTargets" : [ "title-string" ] } ] --