]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/myopac/ebook_circs.tt2
LP#1673870: Use separate templates for ebook checkouts and holds
[Evergreen.git] / Open-ILS / src / templates / opac / 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 id="acct_checked_tabs">
11         <div class="align">
12             <a href="[% mkurl('circs',{},1) %]">[% l("Current Items Checked Out") %]</a>
13         </div>
14         <div class="align selected">
15             <a href="[% mkurl('',{},1) %]">[% l("E-Items Currently Checked Out") %]</a>
16         </div>
17         <div class="align">
18             <a href="[% mkurl('circ_history',{},1) %]">[% l("Check Out History") %]</a>
19         </div>
20     </div>
21
22     <div class="header_middle">
23         <span class="float-left">[% l('E-Items Currently Checked Out') %]</span>
24     </div>
25     <div class="clear-both"></div>
26     <div id="no_ebook_circs" class="warning_box hidden">[% l('You have no e-items checked out.') %]</div>
27     <div id='ebook_circs_main' class="hidden">
28         <table id="ebook_circs_main_table"
29             title="[% l('E-Items Currently Checked Out') %]"
30             class="table_no_border_space table_no_cell_pad item_list_padding">
31             <thead>
32             <tr>
33                 <th>[% l("Title") %]</th>
34                 <th>[% l("Author") %]</th>
35                 <th>[% l("Due Date") %]</th>
36                 <th>[% l("Actions") %]</th>
37             </tr>
38             </thead>
39             <tbody id="ebook_circs_main_table_body"></tbody>
40         </table>
41     </div>
42 </div>
43 [% END %]