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