Moving </head><body> into body of templates so that js and css can be embedded per...
[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 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="menu-authorities.inc" -->
8
9 <div id="doc3" class="yui-t2">
10    
11    <div id="bd">
12         <div id="yui-main">
13         <div class="yui-b"><div class="yui-g">
14
15 <h1>Authority search results</h1>
16
17 <div class="paginationBar"><!-- TMPL_VAR NAME="pagination_bar" --></div>
18
19 <p id="authorities_searchresultlist_current_page_info">
20 <!-- TMPL_IF name="total" -->
21   Results <!-- TMPL_VAR NAME="from" --> to <!-- TMPL_VAR NAME="to" --> of <!-- TMPL_VAR NAME="total" -->
22 <!-- TMPL_ELSE -->
23   No results found.
24 <!-- /TMPL_IF -->
25 </p>
26
27 <div id="authorities_searchresultlist_results">
28   <table>
29     <tr>
30       <th>Summary</th>
31 <!-- TMPL_UNLESS name="isEDITORS" -->
32       <th>Used in</th>
33 <!-- /TMPL_UNLESS -->
34       <th>View</th>
35       <th>Delete</th>
36     </tr>
37 <!-- TMPL_LOOP NAME="result" -->
38     <tr>
39       <td><a href="detail.pl?authid=<!-- TMPL_VAR NAME="authid" -->"><!-- TMPL_VAR NAME="summary" --></a></td>
40   <!-- TMPL_UNLESS name="isEDITORS" -->
41       <td>
42         <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>
43       </td>
44   <!-- /TMPL_UNLESS -->
45       <td>
46         <a href="detail.pl?authid=<!-- TMPL_VAR NAME="authid" -->">Authority number <!-- TMPL_VAR NAME="authid" --></a>
47       </td>
48       <td>
49   <!-- TMPL_UNLESS name="used" -->
50         <a href="javascript:confirm_deletion(<!-- TMPL_VAR NAME="authid" -->)">Delete</a>
51   <!-- /TMPL_UNLESS -->
52       </td>
53     </tr>
54 <!-- /TMPL_LOOP -->
55   </table>
56 </div>
57
58 <div class="paginationBar"><!-- TMPL_VAR NAME="pagination_bar" --></div>
59
60 <script language="JavaScript" type="text/javascript" >
61
62 function confirm_deletion(id) {
63         
64         var is_confirmed = confirm('Are you sure you want to delete this authority?');
65         if (is_confirmed) {
66                 window.location="authorities-home.pl?op=delete&amp;authid="+id;
67         }
68 }
69 </script>
70
71 </div>
72 </div>
73 </div>
74
75 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
76 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->