Browse Source

Bug 21777: Fix circulation table alignment

TO test:
1 - Check out an item to a patron
2 - Note the columns are misaligned
3 - Apply patch
4 - Updatedatabase
5 - Reload the patron
6 - Note the table is fixed

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
18.11.x
Nick Clemens 6 years ago
parent
commit
8d4136c766
  1. 5
      admin/columns_settings.yml
  2. 2
      koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table-footer.inc
  3. 1
      koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc

5
admin/columns_settings.yml

@ -534,6 +534,11 @@ modules:
columnname: location
-
columnname: homebranch
-
columnname: checkout_on_unformatted
cannot_be_toggled: 1
cannot_be_modified: 1
is_hidden: 1
-
columnname: checkout_on
-

2
koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table-footer.inc

@ -1,6 +1,6 @@
<tfoot>
<tr>
<td colspan="11" style="text-align: right; font-weight:bold;">Totals:</td>
<td colspan="12" style="text-align: right; font-weight:bold;">Totals:</td>
<td id="totaldue" style="text-align: right;">[% totaldue | html %]</td>
<td id="totalfine" style="text-align: right;">[% finetotal | html %]</td>
<td id="totalprice" style="text-align: right;">[% totalprice | html %]</td>

1
koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc

@ -19,6 +19,7 @@
<th scope="col">Collection</th>
<th scope="col">Location</th>
<th scope="col">Home library</th>
<th scope="col">&nbsp;</th>
<th scope="col">Checked out on</th>
<th scope="col">Checked out from</th>
<th scope="col">Call no</th>

Loading…
Cancel
Save