memberentryC.tmpl:add test to modify link name
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / members / guarantor_search.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Guarantor search<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <h1>Search guarantor</h1>
3         Search on
4         <form action="/cgi-bin/koha/members/guarantor_search.pl" method="post">
5                 <input type="text" name="member" value="<!-- TMPL_VAR NAME="member" -->"> Ordered by
6                 <select name="orderby">
7                         <option value="surname,firstname">Surname</option>
8                         <option value="cardnumber">cardnumber</option>
9                 </select>
10                 <input type="submit" class="button" value="OK">
11         </form>
12 </div>
13
14 <!--TMPL_IF NAME="results" -->
15         <p>filter on <!-- TMPL_VAR NAME="member" -->, <!-- TMPL_VAR Name ="numresults" --> members found</p>
16         <table>
17                 <tr>
18                         <th>cardnumber</th>
19                         <th>surname</th>
20                         <th>firstname</th>
21                         <th>Date of birth</th>
22                         <th>address</th>
23                 </tr>
24                 <!-- TMPL_LOOP NAME="resultsloop" -->
25                         <!-- TMPL_IF NAME="background" -->
26                                 <tr bgcolor="#ffffcc">
27                         <!-- TMPL_ELSE -->
28                                 <tr bgcolor="white">
29                         <!-- /TMPL_IF -->
30                                 <td><!-- TMPL_VAR NAME="cardnumber" --></td>
31                                 <td><p><a href="javascript:window.opener.document.form.guarantorid.value=<!-- TMPL_VAR NAME="borrowernumber" -->;self.close();"><!-- TMPL_VAR NAME="surname" --></a></p>
32                                 <td><b><!-- TMPL_VAR NAME="firstname" --></b></td> 
33                                 <td><!-- TMPL_VAR NAME="dateofbirth" --></td>
34                                 <td><p><!-- TMPL_VAR NAME="address" --> <!-- TMPL_VAR NAME="city" --></p></td>
35                         </tr>
36                 <!-- /TMPL_LOOP -->
37         </table>
38 </div>
39 </div>
40 <!--/TMPL_IF-->
41
42
43