Subversion Repositories Applications.referentiel

Compare Revisions

Regard whitespace Rev 37 → Rev 38

/trunk/interfaces/squelettes/form_traitement.tpl.html
38,6 → 38,29
<?php endforeach; ?>
<?php endif; ?>
 
<h2>Traitements en attente <?=strftime('à %H:%M:%S le %d %B %Y')?></h2>
<?php if (isset($traitements_en_attente)) : ?>
<table>
<caption>Traitements en attente</caption>
<thead>
<tr>
<th>Nom (#)</th>
<th>Date de la demande</th>
</tr>
</thead>
<tbody>
<?php foreach ($traitements_en_attente as $traitement) : ?>
<tr>
<td><?=$traitement['nom']?> <span class="discretion">(id:<?=$traitement['id_traitement']?>)</span></td>
<td><?=$traitement['meta_date_creation']?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php else : ?>
<p class="information">Aucun traitement en attente.</p>
<?php endif; ?>
 
<h2>Traitements en cours</h2>
<?php if (isset($traitements_en_cours)) : ?>
<table>