altocompta/include/template/forecast_cat.php
Dany De Bontridder e6a2f2935d Task #0000839: Réécriture de la procédure d'installation
Setup.php en partie réécrit
Tous les tags <? ont été changés en <?php pour les servers mutualisés
2013-05-16 21:34:17 +00:00

27 lines
No EOL
467 B
PHP

<fieldset>
<legend>
<?php echo $str_action;?></legend>
<?php echo $str_name;?>
Date de début <?php echo $str_start_date?>
Date de fin <?php echo $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>