]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac-new/myopac/ebook_circs.tt2
LP#1778972: (follow-up) remove a NFPL-specific template
[Evergreen.git] / Open-ILS / src / templates / opac-new / myopac / ebook_circs.tt2
1 [%  PROCESS "opac/parts/header.tt2";
2     PROCESS "opac/parts/misc_util.tt2";
3     PROCESS "opac/parts/myopac/column_sort_support.tt2";
4     WRAPPER "opac/parts/myopac/base.tt2";
5     myopac_page = "ebook_circs";
6 %]
7 <h3 class="sr-only">[% l('E-Items Currently Checked Out') %]</h3>
8 <div id='myopac_checked_div'>
9
10    <div class="mb-3">
11      <ul class="nav nav-pills nav-fill">
12         <li class="nav-item m-2">
13             <a class="nav-link not_active_pill" href='[% mkurl('circs',{},1) %]'>[% l("Current Items Checked Out") %]</a>
14         </li>
15         [%- IF ebook_api.enabled == 'true' %]
16         <li class="nav-item m-2">
17             <a class="nav-link active" href="[% mkurl('ebook_circs',{},1) %]">[% l("E-Items Currently Checked Out") %]</a>
18         </li>
19         [%- END %]
20         <li class="nav-item active m-2">
21             <a class="nav-link not_active_pill" href="[% mkurl('circ_history',{},1) %]">[% l("Check Out History") %]</a>
22         </li>
23     </ul>
24         </div>
25
26     <div class="header_middle">
27         <span class="float-left">[% l('E-Items Currently Checked Out') %]</span>
28     </div>
29     <div class="clear-both"></div>
30     <div id="no_ebook_circs" class="warning_box hidden">[% l('You have no e-items checked out.') %]</div>
31     <div id="ebook_spinner"><img src="[% ctx.media_prefix %]/opac/images/progressbar_green.gif[% ctx.cache_key %]" alt="[% l("Loading...") %]"/></div>
32     <div id='ebook_circs_main' class="hidden">
33         <table id="ebook_circs_main_table"
34             title="[% l('E-Items Currently Checked Out') %]"
35             class="table table-hover miniTable w-100 ecircsTable">
36             <thead>
37             <tr>
38                 <th>[% l("Title") %]</th>
39                 <th>[% l("Author") %]</th>
40                 <th>[% l("Due Date") %]</th>
41                 <th>[% l("Actions") %]</th>
42             </tr>
43             </thead>
44             <tbody id="ebook_circs_main_table_body"></tbody>
45         </table>
46     </div>
47 </div>
48 [% END %]