35 lines
1.0 KiB
PHTML

<div id="paragraph">
<h2>Synthese</h2>
<?php if(!empty($this->annees)):?>
<h2>Eléments Financiers</h2>
<?php $i = 0;?>
<table id="synthese">
<tr>
<th></th>
<?php foreach ($this->annees as $annee => $duree):?>
<th class="date" colspan="2"><?php echo $annee;?><br /><?php echo $duree;?> Mois</th>
<?php endforeach;?>
</tr>
<?php foreach ($this->synthese as $champ => $element):?>
<?php $nom = explode(':', $champ);?>
<tr>
<td style="cursor:help" class="tooltip" title="<?php echo $this->commentaires[$nom[0]]['commentaires'];?>" class="head">
<b><?php echo $nom[1];?></b>
</td>
<?php foreach ($element as $item):?>
<td><?php echo number_format($item['Valeur'], 0, '', ' ');?> K€</td>
<td><?php echo $item['percent'];?> %</td>
<?php endforeach;?>
</tr>
<?php $i++;?>
<?php endforeach;?>
</table>
<?php else :?>
<table>
<tr>
<td width="30"></td>
<td colspan="2" valign="top" width="350" class="StyleInfoData">Aucune synthése diponnible.</td>
</tr>
</table>
<?php endif;?>
</div>