(BUG #4350) parcel.tmpl: add Translatable text
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / batchMod-del.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Tools &rsaquo; Batch Deletion of Items</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
5 <script type="text/JavaScript" language="JavaScript">
6 //<![CDATA[
7          $(document).ready(function() {
8             $("#itemst").tablesorter();
9          });
10 //]]>
11 </script>
12 </head>
13 <body>
14 <!-- TMPL_INCLUDE NAME="header.inc" -->
15 <!-- TMPL_INCLUDE NAME="cat-search.inc"-->
16
17 <div id="breadcrumbs">
18         <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
19         <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
20         <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Delete batches of items</a>
21 </div>
22
23 <div id="doc3" class="yui-t2">
24     <div id="bd">
25         <div id="yui-main">
26             <div class="yui-b">
27                 <h1>Batch deletion</h1>
28             <!-- TMPL_IF NAME="barcode_not_unique" --><div class="dialog alert"><strong>Error saving item</strong>: Barcode must be unique.</div><!-- /TMPL_IF -->
29             <!-- TMPL_IF NAME="no_next_barcode" --><div class="dialog alert"><strong>Error saving items</strong>: Unable to automatically determine values for barcodes. No item has been inserted.</div><!-- /TMPL_IF -->
30             <!-- TMPL_IF NAME="book_on_loan" --><div class="dialog alert"><strong>Cannot Delete</strong>: item is checked out.</div><!-- /TMPL_IF -->
31             <!-- TMPL_IF NAME="book_reserved" --><div class="dialogalert"><strong>Cannot Delete</strong>: item has a waiting hold.</div><!-- /TMPL_IF -->
32
33 <!-- TMPL_IF name="item_loop" -->
34     <!-- TMPL_UNLESS name="action" -->
35
36     <!-- TMPL_IF name="notfoundbarcodes" -->
37             <div class="error"><p>Warning, the following barcodes were not found :</p>
38             <table>
39                 <thead>
40                     <tr>
41                         <th>Barcode</th>
42                     </tr>
43                 </thead>
44                 <tbody>
45                     <!-- TMPL_LOOP name="notfoundbarcodes" -->
46                         <tr><td><!-- TMPL_VAR name="barcode" --></td></tr>
47                     <!-- /TMPL_LOOP -->
48                 </tbody>
49             </table></div>
50             <p>The following barcodes were found : </p>
51         <!-- /TMPL_IF -->
52
53
54         <form name="f" action="batchMod.pl" method="post">
55         <div id="cataloguing_additem_itemlist">
56                 <div style="overflow:auto">
57                 <table id="itemst">
58                     <thead>
59                         <tr>
60                             <th>&nbsp;</th>
61                             <!-- TMPL_LOOP NAME="item_header_loop" --> 
62                             <th> <!-- TMPL_VAR NAME="header_value" --> </th>
63                             <!-- /TMPL_LOOP --> 
64                         </tr>
65                     </thead>
66                     <tbody>
67                     <!-- TMPL_LOOP NAME="item_loop" --> <tr> <!-- TMPL_IF Name="nomod"--> <td class="error">Cannot Edit</td><!--TMPL_ELSE--><td><input type="checkbox" name="itemnumber" value="<!--TMPL_VAR Name="itemnumber"-->" id="row<!-- TMPL_VAR NAME="itemnumber" -->" checked="checked" /></td><!--/TMPL_IF-->
68                         <!-- TMPL_LOOP NAME="item_value" --> <td><!-- TMPL_VAR ESCAPE="HTML" NAME="field" --></td> 
69                                         <!-- /TMPL_LOOP --> </tr>
70                     <!-- /TMPL_LOOP -->
71                     </tbody>
72                 </table>
73                 </div>
74         </div>
75         <!-- TMPL_IF name="show" -->
76                 <div id="cataloguing_additem_newitem">
77              <input type="hidden" name="op" value="<!-- TMPL_VAR NAME="op" -->" />
78              <p>This will delete the selected items.</p>
79              <input type="hidden" name="del" value="1" />
80              <fieldset class="action">    
81                 <input type="submit" name="submit" value="Go" />
82             </fieldset>
83         </div>
84         <!-- /TMPL_IF -->
85     <!-- /TMPL_UNLESS -->
86 <!-- TMPL_ELSE -->
87     <p>No item found</p>
88 <!-- /TMPL_IF -->
89
90 <!-- TMPL_IF name="action" -->
91         <p><!-- TMPL_VAR NAME="deleted_items" --> item(s) deleted.</p>
92         <!-- TMPL_IF NAME="not_deleted_items" -->
93             <p><!-- TMPL_VAR NAME="not_deleted_items" --> item(s) could not be deleted : <!-- TMPL_LOOP NAME="not_deleted_itemnumbers" --><!-- TMPL_VAR NAME="itemnumber" --><!-- /TMPL_LOOP --></p>
94         <!-- /TMPL_IF -->
95         <!-- TMPL_IF NAME="not_deleted_loop" -->
96         <table id="itemst">
97                 <thead>
98                     <tr>
99                         <th>Itemnumber</th>
100                         <th>Barcode</th>
101                         <th>Reason</th>
102                     </tr>
103                 </thead>
104                 <tbody>
105                     <!-- TMPL_LOOP name="not_deleted_loop" -->
106                         <tr>
107                             <td><!-- TMPL_VAR name="itemnumber" --></td>
108                             <td><!-- TMPL_VAR name="barcode" --></td>
109                             <td><!-- TMPL_IF name="book_on_loan" -->Item is checked out<!-- TMPL_ELSIF name="book_reserved" -->Item has a waiting hold<!-- /TMPL_IF --></td>
110                         </tr>
111                     <!-- /TMPL_LOOP -->
112                 </tbody>
113             </table>
114
115         <!-- /TMPL_IF -->
116
117         <p><a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Back</a></p>
118 <!-- /TMPL_IF -->
119
120 </div>
121 </div>
122         <div class="yui-b">
123             <!-- TMPL_INCLUDE NAME="tools-menu.inc" -->
124         </div>
125     </div>
126 </div>
127 </body>
128 </html>