Line 1... |
Line 1... |
1 |
<p><a href="<?php $url_retour = clone($base_url);
|
1 |
<p><a href="<?php $url_retour = clone($base_url);
|
2 |
$url_retour->setVariableRequete('m','liste_annu');
|
2 |
$url_retour->setVariableRequete('m','liste_annu');
|
3 |
echo $url_retour; ?>"> Retour à la liste des annuaires </a>
|
3 |
echo $url_retour; ?>"> Retour à la liste des annuaires </a>
|
4 |
</p>
|
4 |
</p>
|
5 |
|
5 |
|
6 |
<h2>En attente de confirmation pour l'annuaire <?=$annuaire['informations']['aa_nom'] ?></h2>
|
6 |
<h2>En attente de confirmation pour l'annuaire <?=$annuaire['informations']['aa_nom'] ?></h2>
|
7 |
|
7 |
|
8 |
<h3> En attente </h3>
|
8 |
<h3> En attente </h3>
|
9 |
|
9 |
|
10 |
<table class="liste">
|
10 |
<table class="liste">
|
11 |
<tr>
|
11 |
<tr>
|
12 |
<th>Date</th><th>Prénom</th><th>Nom</th><th>Mail</th><th>Confirmer</th><th>Refuser</th>
|
12 |
<th>Date</th><th>Prénom</th><th>Nom</th><th>Mail</th><th>Confirmer</th><th>Refuser</th>
|
13 |
</tr>
|
13 |
</tr>
|
14 |
<tbody>
|
14 |
<tbody>
|
15 |
<?php foreach ($inscrits_en_attente as $inscrit) : ?>
|
15 |
<?php foreach ($inscrits_en_attente as $inscrit) : ?>
|
16 |
<tr>
|
16 |
<tr>
|
17 |
<td><span class="valeur_profil"><?= $inscrit['date_inscription'] ?></span></td>
|
17 |
<td><span class="valeur_profil"><?= $inscrit['date_inscription'] ?></span></td>
|
18 |
<td><span class="valeur_profil"><?= $inscrit['prenom'] ?></span></td>
|
18 |
<td><span class="valeur_profil"><?= $inscrit['prenom'] ?></span></td>
|
19 |
<td><span class="valeur_profil"><?= $inscrit['nom'] ?></span></td>
|
19 |
<td><span class="valeur_profil"><?= $inscrit['nom'] ?></span></td>
|
20 |
<td><span class="valeur_profil"><?= $inscrit['mail'] ?></span></td>
|
20 |
<td><span class="valeur_profil"><?= $inscrit['mail'] ?></span></td>
|
21 |
<td><span><a title="Confirmer l'inscription" href="<?= $inscrit['lien_confirmation'] ?>"><img class="icone" src="<?=$base_url_styles ?>squelettes/images/ok.png"/></a></span></td>
|
21 |
<td><span><a title="Confirmer l'inscription" href="<?= $inscrit['lien_confirmation'] ?>"><img class="icone" src="<?=$base_url_styles ?>squelettes/images/ok.png"/></a></span></td>
|
22 |
<td><span><a title="Refuser l'inscription" href="<?= $inscrit['lien_suppression'] ?>"> <img class="icone" src="<?=$base_url_styles ?>squelettes/images/suppression.png"/></a></span></td>
|
22 |
<td><span><a title="Refuser l'inscription" href="<?= $inscrit['lien_suppression'] ?>"> <img class="icone" src="<?=$base_url_styles ?>squelettes/images/suppression.png"/></a></span></td>
|
23 |
</tr>
|
23 |
</tr>
|
24 |
<?php endforeach; ?>
|
24 |
<?php endforeach; ?>
|
25 |
</tbody>
|
25 |
</tbody>
|
26 |
</table>
|
26 |
</table>
|