Moving inline script blocks to <head> where possible
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / authorities / searchresultlist.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Authorities &rsaquo; Search Result List</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" >
5
6 function confirm_deletion(id) {
7         
8         var is_confirmed = confirm('Are you sure you want to delete this authority?');
9         if (is_confirmed) {
10                 window.location="authorities-home.pl?op=delete&amp;authid="+id;
11         }
12 }
13 </script>
14 </head>
15 <body>
16 <!-- TMPL_INCLUDE NAME="header.inc" -->
17 <!-- TMPL_INCLUDE NAME="menu-authorities.inc" -->
18
19 <div id="doc3" class="yui-t2">
20    
21    <div id="bd">
22         <div id="yui-main">
23         <div class="yui-b"><div class="yui-g">
24
25 <h1>Authority search results</h1>
26
27 <div class="paginationBar"><!-- TMPL_VAR NAME="pagination_bar" --></div>
28
29 <p id="authorities_searchresultlist_current_page_info">
30 <!-- TMPL_IF name="total" -->
31   Results <!-- TMPL_VAR NAME="from" --> to <!-- TMPL_VAR NAME="to" --> of <!-- TMPL_VAR NAME="total" -->
32 <!-- TMPL_ELSE -->
33   No results found.
34 <!-- /TMPL_IF -->
35 </p>
36
37 <div id="authorities_searchresultlist_results">
38   <table>
39     <tr>
40       <th>Summary</th>
41 <!-- TMPL_UNLESS name="isEDITORS" -->
42       <th>Used in</th>
43 <!-- /TMPL_UNLESS -->
44       <th>View</th>
45       <th>Delete</th>
46     </tr>
47 <!-- TMPL_LOOP NAME="result" -->
48     <tr>
49       <td><a href="detail.pl?authid=<!-- TMPL_VAR NAME="authid" -->"><!-- TMPL_VAR NAME="summary" --></a></td>
50   <!-- TMPL_UNLESS name="isEDITORS" -->
51       <td>
52         <a href="../catalogue/search.pl?type=intranet&amp;op=do_search&amp;q=an=<!--TMPL_VAR Name="authid" -->" class="button"><!-- TMPL_VAR NAME="used" --> biblio(s)</a>
53       </td>
54   <!-- /TMPL_UNLESS -->
55       <td>
56         <a href="detail.pl?authid=<!-- TMPL_VAR NAME="authid" -->">Authority number <!-- TMPL_VAR NAME="authid" --></a>
57       </td>
58       <td>
59   <!-- TMPL_UNLESS name="used" -->
60         <a href="javascript:confirm_deletion(<!-- TMPL_VAR NAME="authid" -->)">Delete</a>
61   <!-- /TMPL_UNLESS -->
62       </td>
63     </tr>
64 <!-- /TMPL_LOOP -->
65   </table>
66 </div>
67
68 <div class="paginationBar"><!-- TMPL_VAR NAME="pagination_bar" --></div>
69
70 </div>
71 </div>
72 </div>
73
74 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
75 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->