]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/opac/skin/default/xml/myopac/myopac_holds.xml
4be7ff08c8099fbc3de28adb9ecec700321c77d6
[Evergreen.git] / Open-ILS / web / opac / skin / default / xml / myopac / myopac_holds.xml
1
2 <div id='myopac_holds_div' xmlns:xi="http://www.w3.org/2001/XInclude" >
3
4         <script language='javascript' src='../js/holds.js'> </script>
5
6         <table class='light_border data_grid data_grid_center'>
7
8                 <thead class='color_3'>
9                         <tr>
10                                 <td width='30%'>Title</td>
11                                 <td width='30%'>Author</td>
12                                 <td>Formats</td>
13                                 <td>Pickup Location</td>
14                                 <td>Enable Email Notification</td>
15                                 <td>Enable Phone Notification</td>
16                                 <td>Notification Phone Number</td>
17                                 <td>Cancel This Hold</td>
18                         </tr>
19                 </thead>
20
21                 <tbody id='myopac_holds_tbody'>
22
23                         <tr id='myopac_holds_org_row' class='hide_me' style='padding: 6px; border: 3px solid #E0F0E0;'>
24                                 <td style='padding: 4px;' colspan='10'>
25                                         <select name='myopac_holds_org_selector'> </select>
26                                         <input name='myopac_hold_org_update_submit' type='submit' value='Submit'> </input>
27                                         <input name='myopac_hold_org_update_cancel' type='submit' value='Cancel'> </input>
28                                 </td>
29                         </tr>
30
31                         <tr id='myopac_holds_none' class='hide_me'>
32                                 <td colspan='10'><b>You have no items on hold at this time</b></td>
33                         </tr>
34                         <tr id='myopac_holds_loading'><td>Loading...</td></tr>
35
36                         <tr id='myopac_holds_row' class='hide_me'>
37
38                                 <td name='myopac_holds_title'>
39                                         <a href='javascript:void(0);' name='myopac_holds_title_link'> </a>
40                                 </td>
41
42                                 <td name='myopac_holds_author'>
43                                         <a href='javascript:void(0);' name='myopac_holds_author_link'> </a>
44                                 </td>
45
46                                 <td name='myopac_holds_formats'> </td>
47
48                                 <td><a name='myopac_holds_location' class='classic_link'/></td>
49
50                                 <td>
51                                         <input type='checkbox' name='myopac_holds_email_link' onclick='myopacChangeEmailNotify(this);'/>
52                                 </td>
53
54                                 <td>
55                                         <input type='checkbox' name='myopac_holds_enable_phone' 
56                                                 onclick='myopacChangePhoneNotify(this);'/>
57                                 </td>
58
59                                 <td name='myopac_holds_phone' class='classic_link'>
60                                         <a href='javascript:void(0);' name='myopac_holds_phone_link'></a>
61                                 </td>
62
63                                 <td name='myopac_holds_cancel'>
64                                         <a href='javascript:void(0);' 
65                                                 name='myopac_holds_cancel_link' class='classic_link'>Cancel</a>
66                                 </td>
67
68                         </tr>
69                 </tbody>
70         </table>
71
72         <div class='hide_me' id='myopac_holds_cancel_verify'>Are you sure you wish to cancel the selected hold?</div>
73
74         <span class='hide_me' id='myopac_hold_email_verify'>
75                 Are you sure you wish to the email notification setting for this hold?
76         </span>
77
78         <span class='hide_me' id='myopac_hold_phone_change'>
79                 Enter the new hold notification phone number or click 'Cancel' to keep the current phone number.
80                 The required format is XXX-YYY-ZZZZ.
81         </span>
82         <span class='hide_me' id='myopac_bad_phone'>
83                 The phone number does not have the correct format.  
84                 The required format is XXX-YYY-ZZZZ
85         </span>
86
87         <span class='hide_me' id='myopac_hold_phone_verify'>
88                 Are you sure you with to disable phone notifications for this hold?
89         </span>
90
91         <span class='hide_me' id='myopac_cannot_change_pickup'>
92                 The selected hold is either in transit or has arrived at the pickup location.
93                 The pickup location for this hold cannot be changed.
94         </span>
95
96 </div>
97
98