cleanup in memberentry,categories.
[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="doc" class="yui-t7">
23    <div id="bd">
24
25 <div class="searchresults">
26 <table>
27   <tr>
28       <th>&nbsp;</th>
29     <th>Card</th>
30     <th>Name (Cat.)</th>
31     <th>Address</th>
32   </tr>
33   <!-- TMPL_IF NAME="resultsloop" -->
34   <!-- TMPL_LOOP NAME="resultsloop" -->
35     <!-- TMPL_IF NAME="background" -->
36     <tr class="highlight">
37     <!-- TMPL_ELSE -->
38     <tr>
39     <!-- /TMPL_IF -->
40      <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>
41       <td><!-- TMPL_VAR NAME="cardnumber" --></td>
42       <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>
43       <td><!-- TMPL_VAR NAME="streetaddress" --> <!-- TMPL_VAR NAME="city" --></td>
44     </tr>
45   <!-- /TMPL_LOOP -->
46   </table>
47   </div>
48   <!-- TMPL_ELSE -->No results found<!-- /TMPL_IF -->
49
50 </div>
51
52 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->