altocompta/include/template/forecast_cat.php
2010-11-28 16:08:18 +00:00

27 lines
No EOL
451 B
PHP

<fieldset>
<legend>
<?php echo $str_action;?></legend>
<?php echo $str_name;?>
Date de début <?=$str_start_date?>
Date de fin <?=$str_end_date ?>
<h2> <?php echo _('Catégories');?></h2>
<table>
<tr>
<th><?php echo _('Ordre');?></th>
<th><?php echo _('Nom');?></th>
</tr>
<?php for ($i=0;$i<count($aCat);$i++):?>
<tr>
<td>
<?php echo $aCat[$i]['order'];?>
</td>
<td>
<?php echo $aCat[$i]['name'];?>
</td>
</tr>
<?php endfor;?>
</table>
</fieldset>