Koha/koha-tmpl/intranet-tmpl/default/fr/members/member.tmpl

54 lines
2 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="members-top.inc" -->
<div id="mainbloc">
<h1>Recherche de lecteur</h1>
<div class="bloc100">
<div class="bloctitle">Rechercher sur</div>
<form action="/cgi-bin/koha/members/member.pl" method="post">
<input type="text" name="member" value="<!-- TMPL_VAR NAME="member" -->"> order by
<select name="orderby">
<option value="surname,firstname">Nom de famille</option>
<option value="cardnumber">Cardnumber</option>
</select>
<input type="submit" class="button" value="OK">
</form>
</div>
<div class="bloc100">
<div class="bloctitle">Vous cherchiez <!-- TMPL_VAR NAME="member" --></div>
<table>
<tr>
<th>Carte</th>
<th>Nom de famille</th>
<th>Prénom</th>
<th>Catégorie</th>
<th>Adresse</th>
<th>Retards/Prêts</th>
<th>Frais d'inscription</th>
<th>Notes</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><a href="/cgi-bin/koha/members/moremember.pl?bornum=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR NAME="surname" --></a></td>
<td><!-- TMPL_VAR NAME="firstname" --></a></td>
<td><!-- TMPL_VAR NAME="categorycode" --></td>
<td><!-- TMPL_VAR NAME="streetaddress" --> <!-- TMPL_VAR NAME="city" --></td>
<td><!-- TMPL_VAR NAME="odissue" --></td>
<td><!-- TMPL_VAR NAME="fines" --></td>
<td><!-- TMPL_VAR NAME="borrowernotes" --></td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<form action="/cgi-bin/koha/members/memberentry.pl" method="post">
<input type="submit" class="button" value="Ajouter une inscription" title="Ajouter une inscription" alt="Ajouter une inscription">
<input type="radio" name="categorycode" value="" checked>Adulte <input type="radio" name="categorycode" value="I" >Organisation
<input type="hidden" name="actionType" value="Add">
</form>
</div>
</div>
<!-- TMPL_INCLUDE NAME="members-bottom.inc" -->