]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/hold_cancel.xul
fb3830cc6efb3384530a9ab8ad6aa44bc0a161bd
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / patron / hold_cancel.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Dialog: Apply Standing Penalty to Patron -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- PRESENTATION -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window PUBLIC "" ""[
13     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
14 ]>
15
16 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19
20 <window id="hold_cancel_win" 
21     onload="try { hold_cancel_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
23     title="&staff.hold_list.cancel_hold_dialog.title;">
24
25     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
26     <!-- BEHAVIOR -->
27     <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;</script>
28     <scripts id="openils_util_scripts"/>
29
30     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
31     <script type="text/javascript" src="hold_cancel.js"/>
32
33     <messagecatalog id="patronStrings" src="/xul/server/locale/<!--#echo var='locale'-->/patron.properties" />
34
35     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
36     <!-- CONTENT -->
37     <dialogheader title="&staff.hold_list.cancel_hold_dialog.header;" description="&staff.hold_list.cancel_hold_dialog.description;" />
38     <toolbox flex="1">
39         <toolbar>
40             <toolbarspring/>
41             <toolbaritem>
42                 <menulist id="ahrcc_menulist" label="">
43                     <menupopup id="ahrcc_menupopup"/>
44                 </menulist>
45             </toolbaritem>
46         </toolbar>
47     </toolbox>
48     <textbox id="note_tb" multiline="true" />
49     <hbox>
50         <spacer flex="1"/>
51         <button id="cancel_btn" label="&staff.hold_list.cancel_hold_dialog.cancel_btn.label;" accesskey="&staff.hold_list.cancel_hold_dialog.cancel_btn.accesskey;" />
52         <button id="apply_btn" label="&staff.hold_list.cancel_hold_dialog.apply_btn.label;" accesskey="&staff.hold_list.cancel_hold_dialog.apply_btn.accesskey;" />
53     </hbox>
54 </window>
55