23 lines
678 B
PHTML
23 lines
678 B
PHTML
|
<!-- En cours de dev ne pas modifier. -->
|
||
|
|
||
|
<div id="center">
|
||
|
<table>
|
||
|
<tr><td><?php echo $this->synthese->Siren;?></td></tr>
|
||
|
<tr><td><?php echo $this->synthese->Nom;?></td></tr>
|
||
|
<tr><td><?php echo $form;?></td></tr>
|
||
|
</table>
|
||
|
<?php foreach ($this->synthese->BilansInfos->item as $elements):?>
|
||
|
<?php if ($elements->typeBilan == 'N' and substr($elements->dateCloture, 0, 4) == '2009'):?>
|
||
|
<table is="ratio-synthese">
|
||
|
<tr>
|
||
|
<?php foreach ($elements->RatiosEntrep as $RatiosEntrep):?>
|
||
|
<td></td>
|
||
|
<?php endforeach;?>
|
||
|
<?php foreach ($elements->RatiosEntrep as $RatiosEntrep):?>
|
||
|
<td></td>
|
||
|
<?php endforeach;?>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<?php endif;?>
|
||
|
<?php endforeach;?>
|
||
|
</div>
|