Subversion Repositories Applications.annuaire

Compare Revisions

Ignore whitespace Rev 3 → Rev 4

/trunk/squelettes/liste_ontologie.tpl.html
New file
0,0 → 1,19
<h2><?=$informations['amo_nom'] ?> </h2>
<p><?php if($informations['amo_description'] != 'NULL') echo $informations['amo_description'] ; ?></p>
<table class="liste">
<th>Identifiant</th>
<th>Nom</th>
<th>Abreviation</th>
<th>Description</th>
<?php foreach ($ontologie as $element) : ?>
<tr>
<td><?=$element['amo_id_ontologie'] ?></td>
<td><?=$element['amo_nom'] ?></td>
<td><?=$element['amo_abreviation'] ?></td>
<td><?=$element['amo_description'] ?></td>
</tr>
<?php endforeach; ?>
</table>
<?php if (isset($erreurs['supp'])): ?>
<span class="symbole_obligatoire"> <?=$erreurs['supp'];?> </span>
<?php endif; ?>