View | Details | Raw Unified | Return to bug 27975
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt (-9 / +8 lines)
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
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-3 / +2 lines)
Lines 180-186 Link Here
180
            <th>Rate</th>
180
            <th>Rate</th>
181
            <th>Symbol</th>
181
            <th>Symbol</th>
182
            <th>ISO code</th>
182
            <th>ISO code</th>
183
            <th class="title-string">Last updated</th>
183
            <th>Last updated</th>
184
            <th>Active</th>
184
            <th>Active</th>
185
            <th>Archived</th>
185
            <th>Archived</th>
186
            <th class="NoSort noExport">Actions</th>
186
            <th class="NoSort noExport">Actions</th>
Lines 193-199 Link Here
193
            <td>[% currency.rate | html %]</td>
193
            <td>[% currency.rate | html %]</td>
194
            <td>[% currency.symbol | html %]</td>
194
            <td>[% currency.symbol | html %]</td>
195
            <td>[% currency.isocode | html %]</td>
195
            <td>[% currency.isocode | html %]</td>
196
            <td><span title="[% currency.timestamp | html %]">[% currency.timestamp | $KohaDates %]</span></td>
196
            <td data-order="[% currency.timestamp | html %]">[% currency.timestamp | $KohaDates %]</td>
197
            <td style="color:green;">[% IF currency.active %]✓[% END %]</td>
197
            <td style="color:green;">[% IF currency.active %]✓[% END %]</td>
198
            <td>[% IF currency.archived %]Yes[% END %]</td>
198
            <td>[% IF currency.archived %]Yes[% END %]</td>
199
            <td class="actions">
199
            <td class="actions">
200
- 

Return to bug 27975