improvements from SAN Ouest Provence :
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / members / guarantor_search.tmpl
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <title>Guarantor Search</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/includes/common-style.css">
7 </head>
8 <h1>Search guarantor</h1>
9         Search on
10         <form action="/cgi-bin/koha/members/guarantor_search.pl" method="post">
11                 <input type="text" name="member" value="<!-- TMPL_VAR NAME="member" -->"> Ordered by
12                 <select name="orderby">
13                         <option value="surname,firstname">Surname</option>
14                         <option value="cardnumber">cardnumber</option>
15                 </select>
16                 <input type="submit" class="button" value="OK">
17         </form>
18 </div>
19
20 <!--TMPL_IF NAME="results" -->
21         <p>filter on <!-- TMPL_VAR NAME="member" -->, <!-- TMPL_VAR Name ="numresults" --> members found</p>
22         <table>
23                 <tr>
24                         <th>cardnumber</th>
25                         <th>surname</th>
26                         <th>firstname</th>
27                         <th>Date of birth</th>
28                         <th>address</th>
29                 </tr>
30                 <!-- TMPL_LOOP NAME="resultsloop" -->
31                         <!-- TMPL_IF NAME="background" -->
32                                 <tr bgcolor="#ffffcc">
33                         <!-- TMPL_ELSE -->
34                                 <tr bgcolor="white">
35                         <!-- /TMPL_IF -->
36                                 <td><!-- TMPL_VAR NAME="cardnumber" --></td>
37                                 <td><p><a href="javascript:window.opener.document.form.guarantorid.value=<!-- TMPL_VAR NAME="borrowernumber" -->;self.close();"><!-- TMPL_VAR NAME="surname" --></a></p>
38                                 <td><b><!-- TMPL_VAR NAME="firstname" --></b></td> 
39                                 <td><!-- TMPL_VAR NAME="dateofbirth" --></td>
40                                 <td><p><!-- TMPL_VAR NAME="address" --> <!-- TMPL_VAR NAME="city" --></p></td>
41                         </tr>
42                 <!-- /TMPL_LOOP -->
43         </table>
44 </div>
45 </div>
46 <!--/TMPL_IF-->
47
48 </html>
49
50