Lines 1-5
Link Here
|
1 |
[% USE Koha %] |
1 |
[% USE Koha %] |
2 |
[% USE KohaDates %] |
2 |
[% USE KohaDates %] |
|
|
3 |
[% USE ColumnsSettings %] |
3 |
[% IF Koha.Preference('ExportRemoveFields') OR Koha.Preference('ExportWithCsvProfile') %] |
4 |
[% IF Koha.Preference('ExportRemoveFields') OR Koha.Preference('ExportWithCsvProfile') %] |
4 |
[% SET exports_enabled = 1 %] |
5 |
[% SET exports_enabled = 1 %] |
5 |
[% END %] |
6 |
[% END %] |
Lines 15-20
Link Here
|
15 |
[% INCLUDE 'calendar.inc' %] |
16 |
[% INCLUDE 'calendar.inc' %] |
16 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/en/css/datatables.css" /> |
17 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/en/css/datatables.css" /> |
17 |
[% INCLUDE 'datatables.inc' %] |
18 |
[% INCLUDE 'datatables.inc' %] |
|
|
19 |
[% INCLUDE 'columns_settings.inc' %] |
18 |
[% INCLUDE 'strings.inc' %] |
20 |
[% INCLUDE 'strings.inc' %] |
19 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script> |
21 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script> |
20 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script> |
22 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script> |
Lines 41-46
var relatives_borrowernumbers = new Array();
Link Here
|
41 |
var MSG_ADD_MESSAGE = _("Add a new message"); |
43 |
var MSG_ADD_MESSAGE = _("Add a new message"); |
42 |
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export"); |
44 |
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export"); |
43 |
|
45 |
|
|
|
46 |
columns_settings = [% ColumnsSettings.GetColumns( 'member', 'moremember', 'issues-table', 'json' ) %] |
47 |
|
44 |
$(document).ready(function() { |
48 |
$(document).ready(function() { |
45 |
$('#finesholdsissues').tabs({ |
49 |
$('#finesholdsissues').tabs({ |
46 |
// Correct table sizing for tables hidden in tabs |
50 |
// Correct table sizing for tables hidden in tabs |
47 |
- |
|
|