Koha/koha-tmpl/intranet-tmpl/prog/en/includes/ill-list-table.inc
Owen Leonard 9def03c852
Bug 32199: Add page-section to various patron pages
This patch adds a .page-section div to various patron-related pages in
order to provide a consistent page structure.

To test, apply the patch and view the following pages to confirm that
the primary page content is wrapped in a container with a white
background:

- Patrons ->
    Patron details ->
      - Files
      - Holds history
      - ILL request history
      - Notices
      - Purchase suggestions
      - Routing lists
      - Statistics
- Staff interface home page ->
    Discharge requests pending

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: David Nind <david@davidnind.com>

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-11-16 09:28:58 -03:00

42 lines
1.7 KiB
HTML

<div class="page-section">
[% IF prefilters.length > 0 %]
<table id="ill-requests" data-prefilters="[% prefilters | html %]">
[% ELSE %]
<table id="ill-requests">
[% END %]
<thead>
<tr id="illview-header">
<th scope="col">Request ID</th>
<th scope="col">Author</th>
<th scope="col">Title</th>
<th scope="col">Article title</th>
<th scope="col">Issue</th>
<th scope="col">Volume</th>
<th scope="col">Year</th>
<th scope="col">Pages</th>
<th scope="col">Type</th>
<th scope="col">Order ID</th>
<th scope="col">Patron</th>
<th scope="col">Bibliographic record</th>
<th scope="col">Branch</th>
<th scope="col">Status</th>
<th scope="col" class="placed">&nbsp;</th>
<th scope="col" class="placed_formatted">Placed on</th>
<th scope="col" class="updated">&nbsp;</th>
<th scope="col" class="updated_formatted">Updated on</th>
<th scope="col">Replied</th>
<th scope="col" class="completed">&nbsp;</th>
<th scope="col" class="completed_formatted">Completed on</th>
<th scope="col">Access URL</th>
<th scope="col">Cost</th>
<th scope="col">Comments</th>
<th scope="col">OPAC notes</th>
<th scope="col">Staff notes</th>
<th scope="col">Backend</th>
<th scope="col" class="actions"></th>
</tr>
</thead>
<tbody id="illview-body">
</tbody>
</table>
</div>