|
Lines 426-433
Link Here
|
| 426 |
<thead> |
426 |
<thead> |
| 427 |
<tr> |
427 |
<tr> |
| 428 |
<th>Budget name</th> |
428 |
<th>Budget name</th> |
| 429 |
<th class="title-string">Start date</th> |
429 |
<th>Start date</th> |
| 430 |
<th class="title-string">End date</th> |
430 |
<th>End date</th> |
| 431 |
<th>Locked</th> |
431 |
<th>Locked</th> |
| 432 |
<th>Total</th> |
432 |
<th>Total</th> |
| 433 |
<th class="noExport">Actions</th> |
433 |
<th class="noExport">Actions</th> |
|
Lines 437-444
Link Here
|
| 437 |
[% FOREACH period_active IN period_active_loop %] |
437 |
[% FOREACH period_active IN period_active_loop %] |
| 438 |
<tr> |
438 |
<tr> |
| 439 |
<td><a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% period_active.budget_period_id | uri %]" title="View funds for [% period_active.budget_period_description | html %]">[% period_active.budget_period_description | html %]</a></td> |
439 |
<td><a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% period_active.budget_period_id | uri %]" title="View funds for [% period_active.budget_period_description | html %]">[% period_active.budget_period_description | html %]</a></td> |
| 440 |
<td><span title="[% period_active.budget_period_startdate | html %]">[% period_active.budget_period_startdate | $KohaDates %]</span></td> |
440 |
<td data-order="[% period_active.budget_period_startdate | html %]">[% period_active.budget_period_startdate | $KohaDates %]</td> |
| 441 |
<td><span title="[% period_active.budget_period_enddate | html %]">[% period_active.budget_period_enddate | $KohaDates %]</span></td> |
441 |
<td data-order="[% period_active.budget_period_enddate | html %]">[% period_active.budget_period_enddate | $KohaDates %]</td> |
| 442 |
<td> |
442 |
<td> |
| 443 |
[% IF ( period_active.budget_period_locked ) %] |
443 |
[% IF ( period_active.budget_period_locked ) %] |
| 444 |
<i class="fa fa-lock"></i> Locked</span> |
444 |
<i class="fa fa-lock"></i> Locked</span> |
|
Lines 462-469
Link Here
|
| 462 |
<thead> |
462 |
<thead> |
| 463 |
<tr> |
463 |
<tr> |
| 464 |
<th>Budget name</th> |
464 |
<th>Budget name</th> |
| 465 |
<th class="title-string">Start date</th> |
465 |
<th>Start date</th> |
| 466 |
<th class="title-string">End date</th> |
466 |
<th>End date</th> |
| 467 |
<th>Locked</th> |
467 |
<th>Locked</th> |
| 468 |
<th>Total</th> |
468 |
<th>Total</th> |
| 469 |
<th class="noExport">Actions</th> |
469 |
<th class="noExport">Actions</th> |
|
Lines 473-480
Link Here
|
| 473 |
[% FOREACH period_loo IN period_inactive_loop %] |
473 |
[% FOREACH period_loo IN period_inactive_loop %] |
| 474 |
<tr> |
474 |
<tr> |
| 475 |
<td><a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% period_loo.budget_period_id | uri %]" title="View funds for [% period_loo.budget_period_description | html %]">[% period_loo.budget_period_description | html %]</a></td> |
475 |
<td><a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% period_loo.budget_period_id | uri %]" title="View funds for [% period_loo.budget_period_description | html %]">[% period_loo.budget_period_description | html %]</a></td> |
| 476 |
<td><span title="[% period_loo.budget_period_startdate | html %]">[% period_loo.budget_period_startdate | $KohaDates %]</span></td> |
476 |
<td data-order="[% period_loo.budget_period_startdate | html %]">[% period_loo.budget_period_startdate | $KohaDates %]</td> |
| 477 |
<td><span title="[% period_loo.budget_period_enddate | html %]">[% period_loo.budget_period_enddate | $KohaDates %]</span></td> |
477 |
<td data-order="[% period_loo.budget_period_enddate | html %]">[% period_loo.budget_period_enddate | $KohaDates %]</td> |
| 478 |
<td>[% IF ( period_loo.budget_period_locked ) %]<i class="fa fa-lock"></i> Locked[% END %]</td> |
478 |
<td>[% IF ( period_loo.budget_period_locked ) %]<i class="fa fa-lock"></i> Locked[% END %]</td> |
| 479 |
<td class="data">[% period_loo.budget_period_total | $Price %]</td> |
479 |
<td class="data">[% period_loo.budget_period_total | $Price %]</td> |
| 480 |
<td> |
480 |
<td> |
|
Lines 517-523
Link Here
|
| 517 |
$("#activeperiodst,#inactiveperiodst").dataTable($.extend(true, {}, dataTablesDefaults, { |
517 |
$("#activeperiodst,#inactiveperiodst").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 518 |
"aoColumnDefs": [ |
518 |
"aoColumnDefs": [ |
| 519 |
{ "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, |
519 |
{ "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, |
| 520 |
{ "sType": "title-string", "aTargets" : [ "title-string" ] } |
|
|
| 521 |
], |
520 |
], |
| 522 |
"sPaginationType": "full", |
521 |
"sPaginationType": "full", |
| 523 |
'bAutoWidth': false |
522 |
'bAutoWidth': false |