44 lines
1.6 KiB
Cheetah
44 lines
1.6 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Recherche garant</title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<h1>Recherche d'un garant</h1>
|
|
<form action="/cgi-bin/koha/members/guarantor_search.pl" method="post">
|
|
<input type="text" name="member" value="<!-- TMPL_VAR NAME="member" -->"> Trié par
|
|
<select name="orderby">
|
|
<option value="surname,firstname">Nom de famille</option>
|
|
<option value="cardnumber">Numéro de carte</option>
|
|
</select>
|
|
<input type="submit" class="button" value="Rechercher">
|
|
</form>
|
|
</div>
|
|
|
|
<!--TMPL_IF NAME="results" -->
|
|
<p>Recherche de <!-- TMPL_VAR NAME="member" -->, <!-- TMPL_VAR Name ="numresults" --> adhérents trouvés :</p>
|
|
<table>
|
|
<tr>
|
|
<th>Numéro de carte</th>
|
|
<th>Nom de famille</th>
|
|
<th>Prénom</th>
|
|
<th>Date de naissance</th>
|
|
<th>Adresse</th>
|
|
</tr>
|
|
<!-- TMPL_LOOP NAME="resultsloop" -->
|
|
<!-- TMPL_IF NAME="background" -->
|
|
<tr bgcolor="#ffffcc">
|
|
<!-- TMPL_ELSE -->
|
|
<tr bgcolor="white">
|
|
<!-- /TMPL_IF -->
|
|
<td><!-- TMPL_VAR NAME="cardnumber" --></td>
|
|
<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>
|
|
<td><b><!-- TMPL_VAR NAME="firstname" --></b></td>
|
|
<td><!-- TMPL_VAR NAME="dateofbirth" --></td>
|
|
<td><p><!-- TMPL_VAR NAME="address" --> <!-- TMPL_VAR NAME="city" --></p></td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<!--/TMPL_IF-->
|
|
|
|
|
|
|