More changes to enable YUI-Grids CSS layout
[koha_gimpoz] / koha-tmpl / intranet-tmpl / prog / en / modules / members / guarantor_search.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Guarantor Search</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <!-- TMPL_INCLUDE NAME="header.inc" -->
5
6 <div id="doc" class="yui-t7">
7    <div id="bd">
8         <div class="yui-g">
9
10 <h1>Search for guarantor</h1>
11         <form action="/cgi-bin/koha/members/guarantor_search.pl" method="post">
12                 <input type="text" name="member" value="<!-- TMPL_VAR NAME="member" -->" /> Ordered by
13                 <select name="orderby">
14                         <option value="surname,firstname">Surname</option>
15                         <option value="cardnumber">Cardnumber</option>
16                 </select>
17                 <input type="submit" class="button" value="Search" />
18         </form>
19 </div>
20
21 <!--TMPL_IF NAME="results" -->
22         <p>Searched for <!-- TMPL_VAR NAME="member" -->, <!-- TMPL_VAR Name ="numresults" --> borrower(s) found:</p>
23         <table>
24                 <tr>
25                         <th>Cardnumber</th>
26                         <th>Surname</th>
27                         <th>Firstname</th>
28                         <th>Date of birth</th>
29                         <th>Address</th>
30                 </tr>
31                 <!-- TMPL_LOOP NAME="resultsloop" -->
32                         <!-- TMPL_IF NAME="background" -->
33                                 <tr bgcolor="#ffffcc">
34                         <!-- TMPL_ELSE -->
35                                 <tr bgcolor="white">
36                         <!-- /TMPL_IF -->
37                                 <td><!-- TMPL_VAR NAME="cardnumber" --></td>
38                                 <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>
39                                 <td><b><!-- TMPL_VAR NAME="firstname" --></b></td> 
40                                 <td><!-- TMPL_VAR NAME="dateofbirth" --></td>
41                                 <td><p><!-- TMPL_VAR NAME="address" --> <!-- TMPL_VAR NAME="city" --></p></td>
42                         </tr>
43                 <!-- /TMPL_LOOP -->
44         </table>
45 </div>
46 </div>
47 <!--/TMPL_IF-->
48
49
50 </div>
51 </div>
52 </div>
53
54 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->