Multiple translation strings missing because of js
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / virtualshelves / shelves.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; <!-- TMPL_IF NAME="viewshelf" -->Lists &rsaquo; Contents of <!-- TMPL_VAR NAME="shelfname" --><!-- TMPL_ELSE -->Lists<!-- /TMPL_IF --><!-- TMPL_IF NAME="shelves" --> &rsaquo; Create New List<!-- /TMPL_IF --><!-- TMPL_IF NAME="edit" --> &rsaquo; Edit List <!-- TMPL_VAR name="shelfname"--><!-- /TMPL_IF --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
5 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
6 <script type="text/javascript">                                                                                               
7
8 $(document).ready(function(){
9         // Tablesorter
10         $("#shelvescontentt").tablesorter({<!-- TMPL_IF EXPR="dateformat eq 'metric'" -->dateFormat: 'uk',<!-- /TMPL_IF -->
11             headers: {                                                                                                        
12                 0: { sorter: false },
13                 4: { sorter: false }                                                                                            
14             }                                                                                                                 
15         }); 
16
17         $("#privshelvest, #pubshelvest").tablesorter({
18             headers: {                                                                                                        
19                 4: { sorter: false }                                                                                            
20             }                                                                                                                 
21         });
22
23         $("#addbarcode").focus();
24         $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Clear All")+"<\/a>");
25         $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Select All")+"<\/a>");
26     $("#CheckAll").click(function(){
27         $(".checkboxed").checkCheckboxes();
28         return false;
29     });
30     $("#CheckNone").click(function(){
31         $(".checkboxed").unCheckCheckboxes();
32         return false;
33     });
34 });
35
36         function confirmDelete(message){
37                 if (window.confirm(message)) {
38                         location.href="/cgi-bin/koha/virtualshelves/shelves.pl?<!-- TMPL_IF NAME="showprivateshelves" -->display=privateshelves&<!-- /TMPL_IF -->shelves=1&amp;DEL-<!-- TMPL_VAR NAME="shelfnumber" -->=1";
39                 } else { 
40                         return false;
41                 }
42         }
43     /**
44      * This function checks all checkboxes if all are empty,
45      * or unchecks all if any already checked.
46      */
47     function CheckAll(){
48         var checkboxes = document.getElementsByTagName('input');
49         var nbCheckbox = checkboxes.length;
50         var check = areAllChecked();
51         for(var i=0;i<nbCheckbox;i++){
52             if(checkboxes[i].getAttribute('type') == "checkbox" ){
53                 checkboxes[i].checked = (check) ? 0 : 1;
54             }
55         }
56     }
57     /**
58      * This function returns true if ALL checkboxes are checked
59      */
60     function areAllChecked(){
61         var checkboxes = document.getElementsByTagName('input');
62         var nbCheckbox = checkboxes.length;
63         for(var i=0;i<nbCheckbox;i++){
64             if(checkboxes[i].getAttribute('type') == "checkbox" ){
65                 if(checkboxes[i].checked == 0){
66                     return false;
67                 }
68             }
69         }
70         return true;
71     }
72     //]]>
73 </script>
74 </head>
75 <body>
76 <!-- TMPL_INCLUDE NAME="header.inc" -->
77 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
78
79 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a>
80 <!-- TMPL_IF NAME="viewshelf" -->&rsaquo; Contents of <i><!-- TMPL_VAR NAME="shelfname" --></i><!-- /TMPL_IF --><!-- TMPL_IF NAME="shelves" --> &rsaquo; Create New List<!-- /TMPL_IF --><!-- TMPL_IF NAME="edit" --> &rsaquo; Edit List <i><!-- TMPL_VAR name="shelfname"--></i><!-- /TMPL_IF --></div>
81
82 <div id="doc" class="yui-t7">
83  <div id="bd">
84   <div id="yui-main">
85    <div class="yui-g"><!-- TMPL_INCLUDE NAME="virtualshelves-toolbar.inc" -->
86    </div>
87 <!-- TMPL_IF NAME="paramsloop" -->
88 <!-- TMPL_LOOP NAME="paramsloop" -->
89 <div class="yui-ge">
90     <div class="yui-u first">
91         <!-- TMPL_IF NAME="already" --><div class="dialog alert">A List named <!-- TMPL_VAR NAME="already" --> already exists!</div><!-- /TMPL_IF -->
92                 <!-- TMPL_IF NAME="status" --><div class="dialog alert"><!-- TMPL_VAR NAME="string" --></div><!-- /TMPL_IF -->
93                 <!-- TMPL_IF NAME="nobarcode" --><div class="dialog alert">ERROR: No barcode given.</div><!-- /TMPL_IF --> 
94                 <!-- TMPL_IF NAME="noshelfnumber" --><div class="dialog alert">ERROR: No shelfnumber given.</div><!-- /TMPL_IF --> 
95                 <!-- TMPL_IF NAME="need_confirm" -->
96                 <div class="dialog alert">The list <i><!-- TMPL_VAR NAME="need_confirm" --></i> is not empty.
97                         <br />It has <b><!-- TMPL_VAR NAME="count" --></b> entries.
98                         <br />Use the "Confirm" button below to confirm deletion.
99                 </div>
100                 <!-- /TMPL_IF -->
101                 <!-- TMPL_IF NAME="nopermission" -->
102                 <div class="dialog alert">ERROR: You do not have adequate permission for that action on list <!-- TMPL_VAR NAME="nopermission" -->.</div>
103                 <!-- /TMPL_IF -->
104                 <!-- TMPL_IF NAME="failgetitem" -->
105                 <div class="dialog alert">ERROR: No item found with barcode <!-- TMPL_VAR NAME="failgetitem" -->.</div>
106                 <!-- /TMPL_IF --> 
107                 <!-- TMPL_IF NAME="duplicatebiblio" -->
108                 <div class="dialog alert">A record matching barcode <b><!-- TMPL_VAR NAME="duplicatebiblio" --></b> has already been added.</div>
109                 <!-- /TMPL_IF --> 
110         </div>
111 </div>
112 <!-- /TMPL_LOOP -->
113 <!-- /TMPL_IF --> 
114
115 <!-- TMPL_IF NAME="viewshelf" -->
116    <div class="yui-g">
117     <!-- TMPL_IF NAME="itemsloop" -->
118
119 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post" class="checkboxed">
120         <input type="hidden" name="viewshelf" value="<!-- TMPL_VAR NAME="shelfnumber" -->" />
121         <input type="hidden" name="modifyshelfcontents" value="1" />
122  <fieldset>
123   <legend>Contents of <i><!-- TMPL_VAR NAME="shelfname" --></i></legend>
124  <!--TMPL_IF NAME="manageshelf" --><p><span class="checkall"></span><span class="clearall"></span></p><!-- /TMPL_IF -->
125  <!-- TMPL_VAR name='pagination_bar'-->
126     <table id="shelvescontentt">
127         <thead>
128             <tr>
129                 <!--TMPL_IF NAME="manageshelf" --><th class="checkall">&nbsp;</th><!-- /TMPL_IF -->
130                 <!-- TMPL_UNLESS NAME="item-level_itypes" --><th>Item Type</th><!-- /TMPL_UNLESS -->
131                 <th>Title</th>
132                 <th>Author</th>
133                 <th>Date Added</th>
134                 <th>&nbsp;</th>
135             </tr>
136         </thead>
137         <tbody>
138                 <!-- TMPL_LOOP NAME="itemsloop" -->
139                         <!-- TMPL_IF NAME="toggle" -->
140                         <tr class="highlight">
141                         <!-- TMPL_ELSE -->
142                         <tr>
143                         <!-- /TMPL_IF -->
144                         <!--TMPL_IF NAME="manageshelf" -->
145                         <td>
146                                 <!-- TMPL_IF NAME="confirm" -->
147                                 <input type="hidden"   name="CONFIRM-<!-- TMPL_VAR NAME="confirm" -->" />
148                                 <input type="checkbox" name="REM-<!-- TMPL_VAR NAME="biblionumber" -->" checked />
149                                 <!-- TMPL_ELSE -->
150                                 <input type="checkbox" name="REM-<!-- TMPL_VAR NAME="biblionumber" -->" />
151                                 <!-- /TMPL_IF -->
152                         </td>
153                         <!-- /TMPL_IF -->
154                         <!-- TMPL_UNLESS NAME="item-level_itypes" --><td>
155                 <img src="<!-- TMPL_VAR NAME="imageurl" -->" alt="<!-- TMPL_VAR NAME="description" -->" title="<!-- TMPL_VAR NAME="description" -->" /><!-- TMPL_VAR NAME="description" -->
156                         </td><!-- /TMPL_UNLESS -->
157                         <td>
158                         <!-- TMPL_IF name="BiblioDefaultViewmarc" -->
159                                 <a class="title" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
160                         <!-- TMPL_ELSE -->
161                                 <!-- TMPL_IF name="BiblioDefaultViewisbd" -->
162                                 <a class="title" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
163                                 <!-- TMPL_ELSE -->
164                                 <a class="title" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
165                                 <!-- /TMPL_IF -->
166                         <!-- /TMPL_IF -->
167                         <!-- TMPL_VAR NAME="title" escape="html" --> <!-- TMPL_VAR NAME="subtitle" --></a>
168                         </td>
169                         <td><!-- TMPL_VAR NAME="author" --></td>
170                         <td><!-- TMPL_VAR NAME="dateadded" --></td>
171                         <td>
172                         <!-- TMPL_UNLESS name="notforloan" -->
173                         <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Holds</a>
174                         <!-- /TMPL_UNLESS -->
175                         </td>
176                         </tr>
177                 <!-- /TMPL_LOOP --><!-- /itemsloop -->
178         </tbody>
179     </table>
180  </fieldset>
181  <fieldset class="action">
182         <!-- TMPL_IF name="manageshelf" -->
183             <input type="submit" value="Remove selected Items" onclick='return confirm(_("Are you sure you want to remove these items from the shelf?"))' />
184         <!-- /TMPL_IF -->
185  </fieldset>
186 </form>
187         <!-- /TMPL_IF -->
188    </div>
189 <!-- /TMPL_IF --><!-- /viewshelf -->
190
191 <!-- TMPL_IF name="manageshelf" -->
192 <div class="yui-g">
193 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post">
194  <fieldset class="brief">
195     <legend>Add an item to <i><!-- TMPL_VAR NAME="shelfname" --></i></legend>
196         <ol>
197             <li>
198                 <label for="addbarcode">Barcode:</label>
199                 <input name="addbarcode" type="text" id="addbarcode" size="14" />
200                 <input type="hidden" name="viewshelf" value="<!-- TMPL_VAR NAME="shelfnumber" -->" />
201                 <input type="hidden" name="modifyshelfcontents" value="1" />
202                 <input type="submit" value="Add" />
203             </li>
204         </ol>
205  </fieldset>
206 </form>
207 </div>
208 <!-- /TMPL_IF --><!-- /manageshelf -->
209
210 <!-- TMPL_IF name="debug" -->
211   <!-- TMPL_IF name="edit" --><div>Edit is on (<!-- TMPL_VAR name="shelfname" -->)</div><!-- /TMPL_IF -->
212   <!-- TMPL_IF NAME="seflag" --><div>seflag is on (<!-- TMPL_VAR name="seflag" -->)</div><!-- /TMPL_IF -->
213 <!-- /TMPL_IF -->
214
215 <!-- TMPL_IF NAME="seflag" -->
216 <div class="yui-ge">
217     <div class="yui-u first">
218     <form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl">
219         <fieldset class="rows">
220
221     <!-- TMPL_IF NAME="shelves" -->
222         <input type="hidden" name="shelves" value="1" />
223         <legend>Create a new List</legend>
224         <ol>
225         <li><label for="addshelf">Name: </label><input id="addshelf" type="text" name="addshelf" size="25" /></li>
226         <li><span class="label">Owner: </span><input type="hidden" name="owner" id="owner" value="<!-- TMPL_VAR name="loggedinuser" -->" /><!-- TMPL_VAR name="loggedinusername" --></li>
227                 <li><label for="sortfield" >Sort this list by: </label>
228                 <select name="sortfield">
229                 <!-- TMPL_IF NAME="sort_title" --><option value="title" selected="selected">Title</option><!-- TMPL_ELSE --><option value="title">Title</option><!-- /TMPL_IF -->
230                 <!-- TMPL_IF NAME="sort_author" --><option value="author" selected="selected">Author</option><!-- TMPL_ELSE --><option value="author">Author</option><!-- /TMPL_IF -->
231                 <!-- TMPL_IF NAME="sort_copyrightdate" --><option value="copyrightdate" selected="selected">Copyrightdate</option><!-- TMPL_ELSE --><option value="copyrightdate">Copyrightdate</option><!-- /TMPL_IF -->
232                 </select></li>
233         <li><label for="category">Category: </label>
234                         <select name="category" id="category">
235                   <option value="1">Private</option>
236                   <option value="2">Public</option>
237                   <option value="3">Open</option>
238                         </select></li></ol>
239     <!-- /TMPL_IF -->
240
241     <!-- TMPL_IF name="edit" -->
242                 <input type="hidden" name="op" value="modifsave" />
243                 <input type="hidden" name="shelfnumber" value="<!-- TMPL_VAR name="shelfnumber" -->" />
244                 <legend>Edit List <i><!-- TMPL_VAR name="shelfname" --></i></legend>
245                 <ol>
246                 <li><label for="shelfname">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value='<!-- TMPL_VAR name="shelfname" ESCAPE="HTML" -->' /></li>
247                 <li><label for="owner">Owner: </label><input type="hidden" id="owner" name="owner" value="<!-- TMPL_IF NAME="owner" --><!-- TMPL_VAR NAME="ownername" --><!-- TMPL_ELSE --><!-- TMPL_VAR NAME="loggedinusername" --><!-- /TMPL_IF -->" /><!-- TMPL_IF NAME="owner" --><!-- TMPL_VAR NAME="ownername" --><!-- TMPL_ELSE --><!-- TMPL_VAR NAME="loggedinusername" --><!-- /TMPL_IF --></li>
248                 <li><label for="sortfield" >Sort this list by: </label>
249                 <select name="sortfield">
250                 <!-- TMPL_IF NAME="sort_title" --><option value="title" selected="selected">Title</option><!-- TMPL_ELSE --><option value="title">Title</option><!-- /TMPL_IF -->
251                 <!-- TMPL_IF NAME="sort_author" --><option value="author" selected="selected">Author</option><!-- TMPL_ELSE --><option value="author">Author</option><!-- /TMPL_IF -->
252                 <!-- TMPL_IF NAME="sort_copyrightdate" --><option value="copyrightdate" selected="selected">Copyrightdate</option><!-- TMPL_ELSE --><option value="copyrightdate">Copyrightdate</option><!-- /TMPL_IF -->
253                 </select></li>
254                 <li><label for="category">Category: </label>
255                         <select id="category" name="category">
256                         <!-- TMPL_IF name="category1" -->
257                                 <option value="1" selected="selected">Private</option>
258                         <!-- TMPL_ELSE -->
259                                 <option value="1">Private</option>
260                         <!-- /TMPL_IF -->
261                         <!-- TMPL_IF name="category2" -->
262                                 <option value="2" selected="selected">Public</option>
263                         <!-- TMPL_ELSE -->
264                                 <option value="2">Public</option>
265                         <!-- /TMPL_IF -->
266                         <!-- TMPL_IF NAME="category3" -->
267                                 <option value="3" selected="selected">Open</option>
268                         <!-- TMPL_ELSE -->
269                                 <option value="3">Open</option>
270                         <!-- /TMPL_IF -->
271                         </select></li></ol>
272         <!-- /TMPL_IF -->
273
274                 </fieldset>
275                 <fieldset class="action"><input type="submit" value="Save" /><a href="/cgi-bin/koha/virtualshelves/shelves.pl" class="cancel">Cancel</a></fieldset>
276     </form>
277     </div>
278     <div class="yui-u">
279         <div class="help"><ul>
280             <li>A <b>Private</b> List is managed by you and can be seen only by you.</li>
281             <li> A <b>Public</b> List can be seen by everybody, but managed only by you.</li>
282             <li> A <b>Open</b> List can be seen and managed by everybody.</li>
283         </ul></div>
284     </div>
285 </div>
286 <!-- /TMPL_IF --><!-- /seflag -->
287
288 <!-- TMPL_UNLESS NAME="vseflag" -->
289         <h2>Lists</h2>
290                 <div class="toptabs">
291         <ul class="ui-tabs-nav">
292         <!-- TMPL_IF NAME="showprivateshelves" -->
293             <li id="privateshelves_tab" class="ui-tabs-selected"><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your Lists</a></li>
294         <!-- TMPL_ELSE -->
295             <li id="privateshelves_tab" class=""><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your Lists</a></li>
296         <!-- /TMPL_IF -->
297         <!-- TMPL_IF NAME="showpublicshelves" -->
298             <li id="publicshelves_tab" class="ui-tabs-selected"><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public Lists</a></li>
299         <!-- TMPL_ELSE -->
300             <li id="publicshelves_tab" class=""><a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public Lists</a></li>
301         <!-- /TMPL_IF -->
302         </ul>
303         <!-- TMPL_IF NAME="showprivateshelves" -->
304                 <div id="privateshelves" class="ui-tabs-panel" style="display:block;">
305                 <!-- TMPL_ELSE -->
306                 <div id="privateshelves" class="ui-tabs-panel" style="display:none;">
307                 <!-- /TMPL_IF -->
308             <!-- TMPL_IF NAME="shelveslooppriv" -->
309                         <!-- TMPL_VAR name='pagination_bar'-->
310                         <table id="privshelvest">
311                             <thead>
312                                 <tr><th>List Name</th><th>Contents</th><th>Sort by</th><th>Type</th><th>Options</th></tr>
313                             </thead>
314                             <tbody>
315                 <!-- TMPL_LOOP NAME="shelveslooppriv" -->
316                     <!-- TMPL_IF NAME="toggle" --><tr class="highlight"><!--TMPL_ELSE--><tr><!-- /TMPL_IF -->
317         <td><a href="shelves.pl?<!-- TMPL_IF NAME="showprivateshelves" -->display=privateshelves&amp;<!-- /TMPL_IF -->viewshelf=<!-- TMPL_VAR NAME="shelf" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html"  --></a></td>
318         <td><!-- TMPL_VAR NAME="count" --> item(s)</td>
319         <td><!-- TMPL_VAR NAME="sortfield" --></td>
320         <td><!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF -->
321                         <!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF -->
322                         <!-- TMPL_IF NAME="viewcategory3" -->Open<!-- /TMPL_IF -->
323                 </td>
324         <td>
325             <!-- TMPL_IF NAME="mine" -->
326                                 <form action="shelves.pl" method="get">
327                                         <input type="hidden" name="shelfnumber" value="<!-- TMPL_VAR NAME="shelf" -->" />
328                                         <input type="hidden" name="op" value="modif" />
329                                         <input type="submit" class="editshelf" value="Edit" />
330                                 </form>
331                                 <form action="shelves.pl" method="post">
332                                         <input type="hidden" name="shelves" value="1" />
333                     <input type="hidden" name="display" value="privateshelves" />
334                                         <input type="hidden" name="DEL-<!-- TMPL_VAR NAME="shelf" -->" value="1" />
335                                         <!-- TMPL_IF NAME="confirm" -->
336                                         <input type="hidden" name="CONFIRM-<!-- TMPL_VAR NAME="confirm" -->" value="1" />
337                                         <input type="submit" class="approve" value="Confirm" />
338                                         <!-- TMPL_ELSE -->
339                                         <input type="submit" class="deleteshelf" onclick="return confirmDelete(_('Are you sure you want to remove this List?'));" value="Delete" />
340                                         <!-- /TMPL_IF -->
341                                 </form>
342                         <!-- TMPL_ELSE -->
343                                 None
344                         <!-- /TMPL_IF -->
345                 </td>
346                 </tr>
347                 <!-- /TMPL_LOOP -->
348             <!-- TMPL_ELSE -->
349             <tr><td colspan="4">No Private Lists.</td></tr>
350             <!-- /TMPL_IF --><!-- /shelveslooppriv -->
351             </tbody>
352         </table>
353                 </div><!-- /privateshelves -->
354
355         <!-- TMPL_IF NAME="showpublicshelves" -->
356                 <div id="publicshelves" class="ui-tabs-panel" style="display:block;">
357                 <!-- TMPL_ELSE -->
358                 <div id="publicshelves" class="ui-tabs-panel" style="display:none;">
359                 <!-- /TMPL_IF -->
360         <!-- TMPL_IF NAME="shelvesloop" -->
361                 <!-- TMPL_VAR name='pagination_bar'-->
362         <table id="pubshelvest">
363             <thead>
364                 <tr><th>List Name</th><th>Contents</th><th>Sort By</th><th>Type</th><th>Options</th></tr>
365             </thead>
366             <tbody>
367             <!-- TMPL_LOOP NAME="shelvesloop" -->
368                 <!-- TMPL_IF NAME="toggle" --><tr class="highlight"><!--TMPL_ELSE--><tr><!-- /TMPL_IF -->
369                 <td><a href="shelves.pl?viewshelf=<!-- TMPL_VAR NAME="shelf" -->"><!-- TMPL_VAR NAME="shelfname" ESCAPE="html"  --></a></td>
370                 <td><!-- TMPL_VAR NAME="count" --> item(s)</td>
371         <td><!-- TMPL_VAR NAME="sortfield" --></td>
372         <td><!-- TMPL_IF NAME="viewcategory1" -->Private<!-- /TMPL_IF -->
373                         <!-- TMPL_IF NAME="viewcategory2" -->Public<!-- /TMPL_IF -->
374                         <!-- TMPL_IF NAME="viewcategory3" -->Open<!-- /TMPL_IF -->
375                 </td>
376         <td>
377             <!-- TMPL_IF NAME="manageshelf" -->
378                                 <form action="shelves.pl" method="get">
379                                         <input type="hidden" name="shelfnumber" value="<!-- TMPL_VAR NAME="shelf" -->" />
380                                         <input type="hidden" name="op" value="modif" />
381                                         <input type="submit" class="editshelf" value="Edit" />
382                                 </form>
383                                 <form action="shelves.pl" method="post">
384                                         <input type="hidden" name="shelves" value="1" />
385                                         <input type="hidden" name="DEL-<!-- TMPL_VAR NAME="shelf" -->" value="1" />
386                                         <!-- TMPL_IF NAME="confirm" -->
387                                         <input type="hidden" name="CONFIRM-<!-- TMPL_VAR NAME="confirm" -->" value="1" />
388                                         <input type="submit" class="confirm" value="Confirm" />
389                                         <!-- TMPL_ELSE -->
390                                         <input type="submit" class="deleteshelf" onclick="return confirmDelete(_('Are you sure you want to remove this List?'));" value="Delete" />
391                                         <!-- /TMPL_IF -->
392                                 </form>
393                         <!-- TMPL_ELSE -->
394                                 None
395                         <!-- /TMPL_IF -->
396                 </td>
397                 </tr>
398             <!-- /TMPL_LOOP -->
399             </tbody>
400         </table>
401         <!-- TMPL_ELSE -->
402                 <!-- TMPL_IF NAME="showpublicshelves" -->No Public Lists.<!-- /TMPL_IF -->
403         <!-- /TMPL_IF --><!-- /shelvesloop -->
404         </div><!-- /publicshelves -->
405                 </div>
406 <!-- /TMPL_UNLESS -->
407
408 </div>
409 </div>
410 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->