extranet/application/views/default/scripts/pieces/associationbilans.phtml
2012-08-20 10:19:16 +00:00

53 lines
1.2 KiB
PHTML

<div id="center">
<h1>PI&Egrave;CES OFFICIELLES</h1>
<div class="paragraph">
<table class="identite">
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">
Num&eacute;ro identifiant Siren
</td>
<td width="350" class="StyleInfoData">
<?=$this->SirenTexte($this->siren)?>
</td>
</tr>
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">Raison Sociale</td>
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
</tr>
</table>
</div>
<h2>Comptes annuels</h2>
<div class="paragraph">
<?php if (count($this->bilans)==0){?>
<p>Aucun bilan disponible pour cette association.</p><br/>
<?php } else {?>
<table class="greffe">
<thead>
<tr><th>Date de clôture</th><th>Type</th><th>Décisions</th>
</tr>
</thead>
<tbody>
<?php foreach($this->bilans as $bilan):?>
<tr>
<td class="date"><?=$bilan['date']?></td>
<td class="type"><?=$bilan['type']?>
<span class="fichier">
<a href="<?=$bilan['href']?>" title="<?=$bilan['title']?>">
<img alt="PDF" src="/themes/default/images/interfaces/icone_pdf.gif"/>
</a>
</span>
</td>
<td class="decision"><?=$bilan['decision']?></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<?php } ?>
</div>
</div>