Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 32 → Rev 33

/trunk/scripts/modules/tests/squelettes/message_table.tpl.html
1,14 → 1,14
<table>
<caption><?=count($test['message']['lignes'])?> lignes en erreur</caption>
<caption><?=count($message['lignes'])?> lignes en erreur</caption>
<thead>
<tr>
<?php foreach ($test['message']['entete'] as $entete) : ?>
<?php foreach ($message['entete'] as $entete) : ?>
<th><?=$entete?></th>
<?php endforeach; ?>
</tr>
</thead>
<tbody>
<?php foreach ($test['message']['lignes'] as $ligne) : ?>
<?php foreach ($message['lignes'] as $ligne) : ?>
<tr>
<?php foreach ($ligne as $info) : ?>
<td><?=$info?></td>