e83ed955fd
We now display the descriptions everywhere, so we should drop the 'code' from labels. This changes text in a lot of playes in Koha, including: - The relatives checkouts table when displayed for the guarantor - The new order and order receive forms in acquisitoins (item creation) - The description of CCODE in the authorised values table - The column description on results in item search - The branch tranfers page - Course reserves: add reserve items (one and in batch) - Patron account > statistics tab Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
[% USE Koha %]
|
|
[% IF ( relatives_issues_count ) %]
|
|
<div id="relatives-issues">
|
|
<table id="relatives-issues-table" style="width: 100% !Important;">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Due date (unformatted, hidden)</th>
|
|
<th scope="col">Due date</th>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Record-level item type</th>
|
|
<th scope="col">Item type</th>
|
|
<th scope="col">Collection</th>
|
|
<th scope="col">Location</th>
|
|
<th scope="col">Checked out on (hidden, unformatted)</th>
|
|
<th scope="col">Checked out on</th>
|
|
<th scope="col">Checked out from</th>
|
|
<th scope="col">Call no</th>
|
|
<th scope="col">Charge</th>
|
|
<th scope="col">Fine</th>
|
|
<th scope="col">Price</th>
|
|
<th scope="col">Patron</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
[% END %]
|