34 lines
908 B
PHTML
34 lines
908 B
PHTML
|
<style>
|
||
|
.identite, h1
|
||
|
{
|
||
|
display:none;
|
||
|
}
|
||
|
</style>
|
||
|
<div id="center">
|
||
|
<div id="paragraph">
|
||
|
<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>
|
||
|
</div>
|
||
|
</div>
|