Line 6... |
Line 6... |
6 |
<h3>Il y a <?= $nb_resultats ?> inscrit<?php if($nb_resultats > 1) echo 's' ?> correspondant<?php if($nb_resultats > 1) echo 's' ?> aux critères : </h3>
|
6 |
<h3>Il y a <?= $nb_resultats ?> inscrit<?php if($nb_resultats > 1) echo 's' ?> correspondant<?php if($nb_resultats > 1) echo 's' ?> aux critères : </h3>
|
7 |
<?php if(isset($pagination)) { echo $pagination; } ?>
|
7 |
<?php if(isset($pagination)) { echo $pagination; } ?>
|
Line 8... |
Line 8... |
8 |
|
8 |
|
9 |
<form id="envoi_message" name="envoi_message" method="get" action="<? $url_message = clone($base_url); $url_message->setVariableRequete('m','annuaire_envoyer_message'); echo $url_message; ?>">
|
9 |
<form id="envoi_message" name="envoi_message" method="get" action="<? $url_message = clone($base_url); $url_message->setVariableRequete('m','annuaire_envoyer_message'); echo $url_message; ?>">
|
10 |
<table class="liste">
|
10 |
<table class="liste">
|
11 |
<tr><th></th><th></th><th>Prenom</th><th>Nom</th><th>Pays</th><th>Ville</th><th>Code Postal</th>
|
11 |
<tr><th></th><th></th><th>Prenom</th><th>Nom</th><th>Pays</th><th>Ville</th><th>Code Postal</th><th>Date d'inscription</th>
|
12 |
<?php foreach ($resultats_recherche as $id => $resultat) : ?>
|
12 |
<?php foreach ($resultats_recherche as $id => $resultat) : ?>
|
13 |
<tr>
|
13 |
<tr>
|
14 |
<td><input type="checkbox" name="destinataires[<?= $id ?>]" id="destinataires[<?= $id ?>]" />
|
14 |
<td><input type="checkbox" name="destinataires[<?= $id ?>]" id="destinataires[<?= $id ?>]" />
|
15 |
<td><a href="<?php $url_detail = clone($base_url);
|
15 |
<td><a href="<?php $url_detail = clone($base_url);
|
Line 24... |
Line 24... |
24 |
<img class="icone_moyenne" src="<?=$base_url_styles ?>squelettes/images/voir_fiche.png" title="Cliquez pour accéder au profil" alt="avatar standard" /> </a>
|
24 |
<img class="icone_moyenne" src="<?=$base_url_styles ?>squelettes/images/voir_fiche.png" title="Cliquez pour accéder au profil" alt="avatar standard" /> </a>
|
25 |
<? } ?>
|
25 |
<? } ?>
|
26 |
</td>
|
26 |
</td>
|
27 |
<td> <?=$resultat['prenom']['amv_valeur'] ?></td>
|
27 |
<td> <?=$resultat['prenom']['amv_valeur'] ?></td>
|
28 |
<td><?=$resultat['nom']['amv_valeur'] ?></td>
|
28 |
<td><?=$resultat['nom']['amv_valeur'] ?></td>
|
29 |
<td><?=$resultat['pays']['amo_nom'] ?></td>
|
29 |
<td><?=$resultat['pays']['amv_valeur_affichage'] ?></td>
|
30 |
<td> <?=$resultat['ville']['amv_valeur'] ?></td>
|
30 |
<td> <?=$resultat['ville']['amv_valeur'] ?></td>
|
31 |
<td><?=$resultat['code_postal']['amv_valeur'] ?></td>
|
31 |
<td><?=$resultat['code_postal']['amv_valeur'] ?></td>
|
- |
|
32 |
<td><?=$resultat['date_inscription']['amv_valeur_affichage'] ?></td>
|
32 |
</tr>
|
33 |
</tr>
|
33 |
<?php endforeach; ?>
|
34 |
<?php endforeach; ?>
|
34 |
</table>
|
35 |
</table>
|
35 |
<?php } else { ?>
|
36 |
<?php } else { ?>
|
36 |
<div> <h3> Aucun inscrit ne correspond aux critères de la recherche </h3></div>
|
37 |
<div> <h3> Aucun inscrit ne correspond aux critères de la recherche </h3></div>
|