Rev 236 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
7 |
aurelien |
1 |
<h2>Inscrits à l'annuaire <?=$annuaire['informations']['aa_nom'] ?></h2>
|
|
|
2 |
<p><?=$annuaire['informations']['aa_description'] ?></p>
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
<h3> Inscrits </h3>
|
|
|
6 |
|
8 |
aurelien |
7 |
<?php if(isset($pagination)) { echo $pagination; } ?>
|
|
|
8 |
|
7 |
aurelien |
9 |
<table class="liste">
|
|
|
10 |
<tr>
|
8 |
aurelien |
11 |
<th></th>
|
|
|
12 |
<?php foreach ($annuaire['colonnes'] as $colonne) : ?>
|
|
|
13 |
<th><?=$colonne ?></th>
|
|
|
14 |
<?php endforeach; ?>
|
|
|
15 |
</tr>
|
|
|
16 |
<?php foreach ($annuaire['inscrits'] as $inscrit) : ?>
|
|
|
17 |
<tr>
|
236 |
aurelien |
18 |
<td><a href="<?= AppControleur::getUrlConsultationProfil($annuaire['informations']['aa_id_annuaire'], $inscrit[$annuaire['colonnes']['champ_id']]); ?>" title="Voir la fiche"> <img class="icone_moyenne" src="<?=$base_url_styles ?>squelettes/images/voir_fiche.png"/> </a></td>
|
7 |
aurelien |
19 |
<?php foreach ($inscrit as $valeur) : ?>
|
|
|
20 |
<td><?=$valeur ?></td>
|
|
|
21 |
<?php endforeach; ?>
|
|
|
22 |
</tr>
|
|
|
23 |
<?php endforeach; ?>
|
|
|
24 |
</table>
|