1783a63801cb3ccd7046c18d40d5381c36f92797
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / member-quicksearch-results.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Patron Quick Search</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript">
5   // Set the value of the form field to the passed value and optionally shift
6     // focus and close the popup.
7     function FillForm(val,formname,formfield) {
8     
9         document.forms[formname].elements[formfield].value = val;
10
11         // Uncomment below to shift focus after clicking link in popup.
12         document.forms[formname].elements[formfield].focus();
13     
14         // Uncomment below to close popup after clicking link.
15         newwin.close();
16     }
17 </script>
18 </head>
19 <body>
20 <!-- TMPL_INCLUDE NAME="header.inc" -->
21
22 <div id="doc3" class="yui-t2">
23    
24    <div id="bd">
25         <div id="yui-main">
26         <div class="yui-b"><div class="yui-g">
27
28 <div class="searchresults">
29 <table>
30   <tr>
31       <th>&nbsp;</th>
32     <th>Card</th>
33     <th>Name (Cat.)</th>
34     <th>Address</th>
35   </tr>
36   <!-- TMPL_IF NAME="resultsloop" -->
37   <!-- TMPL_LOOP NAME="resultsloop" -->
38     <!-- TMPL_IF NAME="background" -->
39     <tr class="highlight">
40     <!-- TMPL_ELSE -->
41     <tr>
42     <!-- /TMPL_IF -->
43      <td><form action="member-search-results.pl" method="get"><input type="button" value="Choose" title="Choose this Patron" onclick="window.opener.FillForm('<!-- TMPL_VAR NAME="cardnumber" -->','mainform','member'); return false;" /></form></td>
44       <td><!-- TMPL_VAR NAME="cardnumber" --></td>
45       <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --></a> (<!-- TMPL_VAR NAME="categorycode" -->)</td>
46       <td><!-- TMPL_VAR NAME="streetaddress" --> <!-- TMPL_VAR NAME="city" --></td>
47     </tr>
48   <!-- /TMPL_LOOP -->
49   </table>
50   </div>
51   <!-- TMPL_ELSE -->No results found<!-- /TMPL_IF -->
52
53 </div>
54 </div>
55 </div>
56
57 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->