Lines 1-6
Link Here
|
1 |
[% USE Koha %] |
1 |
[% USE Koha %] |
2 |
[% USE Branches %] |
2 |
[% USE Branches %] |
3 |
[% USE KohaDates %] |
3 |
[% USE KohaDates %] |
|
|
4 |
[% USE ColumnsSettings %] |
4 |
[% IF Koha.Preference('ExportRemoveFields') OR Koha.Preference('ExportWithCsvProfile') %] |
5 |
[% IF Koha.Preference('ExportRemoveFields') OR Koha.Preference('ExportWithCsvProfile') %] |
5 |
[% SET exports_enabled = 1 %] |
6 |
[% SET exports_enabled = 1 %] |
6 |
[% END %] |
7 |
[% END %] |
Lines 18-23
Link Here
|
18 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
19 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
19 |
[% INCLUDE 'strings.inc' %] |
20 |
[% INCLUDE 'strings.inc' %] |
20 |
[% INCLUDE 'datatables.inc' %] |
21 |
[% INCLUDE 'datatables.inc' %] |
|
|
22 |
[% INCLUDE 'columns_settings.inc' %] |
21 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script> |
23 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script> |
22 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script> |
24 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script> |
23 |
[% INCLUDE 'timepicker.inc' %] |
25 |
[% INCLUDE 'timepicker.inc' %] |
Lines 43-48
var relatives_borrowernumbers = new Array();
Link Here
|
43 |
|
45 |
|
44 |
var MSG_ADD_MESSAGE = _("Add a new message"); |
46 |
var MSG_ADD_MESSAGE = _("Add a new message"); |
45 |
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export"); |
47 |
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export"); |
|
|
48 |
|
49 |
columns_settings = [% ColumnsSettings.GetColumns( 'circ', 'circulation', 'issues-table', 'json' ) %] |
50 |
|
46 |
[% IF ( borrowernumber ) %]if($.cookie("holdfor") != [% borrowernumber %]){ $.cookie("holdfor",null, { path: "/", expires: 0 }); }[% ELSE %]$.cookie("holdfor",null, { path: "/", expires: 0 });[% END %] |
51 |
[% IF ( borrowernumber ) %]if($.cookie("holdfor") != [% borrowernumber %]){ $.cookie("holdfor",null, { path: "/", expires: 0 }); }[% ELSE %]$.cookie("holdfor",null, { path: "/", expires: 0 });[% END %] |
47 |
[% UNLESS ( borrowernumber ) %][% UNLESS ( selectborrower ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %][% END %] |
52 |
[% UNLESS ( borrowernumber ) %][% UNLESS ( selectborrower ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %][% END %] |
48 |
|
53 |
|
49 |
- |
|
|