Damien LASSERRE 0eb87189a0 Giant modif
2011-06-29 14:38:52 +00:00

63 lines
2.2 KiB
PHTML

<style>
#info td {
padding:2px;
}
</style>
<div id="center">
<div class="paragraph">
<div id="identite">
<h1>Identite</h1>
<table>
<tr id="info">
<td width="30px"></td>
<td class="StyleInfoLib" width="250">CompanyId</td>
<td class="StyleInfoData" width="300"><?php echo $this->CompanyId;?></td>
</tr id="info">
<tr id="info">
<td width="30px"></td>
<td class="StyleInfoLib" width="250">CompanyRegisterNumber</td>
<td class="StyleInfoData" width="300"><?php echo $this->CompanyRegisterNumber;?></td>
</tr>
<tr id="info">
<td width="30px"></td>
<td valign="top" class="StyleInfoLib" width="250">RegisteredName</td>
<td class="StyleInfoData" width="300"><?php echo $this->raisonSociale;?></td>
</tr>
<tr id="info">
<td width="30px"></td>
<td valign="top" class="StyleInfoLib" width="250">Adresse</td>
<td class="StyleInfoData" width="300"><a href=""><?php echo $this->Adresse[0].' '.$this->Adresse[1];?><br />
<?php echo $this->Adresse[2].' '.$this->Adresse[3]?></a></td>
</tr>
</table>
<h1>Liste des rapports</h1>
<table>
<tr>
<td></td>
<td></td>
<td></td>
<td style="word-spacing: 2px;" align="center">
<input disabled="disabled" type="radio" name="lang1" /><input type="radio" name="lang2" checked="true" />
</td>
<td></td>
</tr>
<?php $i=1; foreach ($this->listeRapport->DataSetOptions->DataSetOption as $rapport):?>
<tr id="info"> <td width="30px"></td>
<td class="StyleInfoLib" width="250"><?php echo $i;?> - Type de rapport</td>
<td class="StyleInfoData" width="150"><?php echo $rapport->DataSetType->_?></td>
<td align="center" class="StyleInfoData" width="100">
<?php foreach ($rapport->LanguageCodes->LanguageCode as $language):?>
<img src="/themes/default/images/drapeaux/<?php echo $language;?>.png" />
<?php endforeach;?>
</td>
<td class="StyleInfoData" width="300"><a href="">Consulter le rapport en immédiat</a></td>
</tr>
<?php $i++;?>
<?php endforeach;?>
</table>
<pre><?php print_r($this->listeRapport); ?></pre>
</div>
</div>
</div>