Damien LASSERRE e969a5214c Création des bilan, marchent bien reste le graphique a faire
+ correction de la synthese oublie de supprimer le exit.
2011-05-03 15:31:32 +00:00

15 lines
565 B
PHTML

<div id="center">
<h1>Les bilans</h1>
<div class="paragraph">
<?php foreach ($this->listeBilan as $bilan):?>
<?php echo $this->partial('finance/bilansPartials/'.$bilan.'.partial.phtml',
array(
'date' => $this->date,
'duree' => $this->duree,
'dateFunction' => $this->dateFunction,
$bilan => $this->$bilan
));
?><br />
<?php endforeach;?>
</div>
</div>