44 lines
1.3 KiB
PHTML
44 lines
1.3 KiB
PHTML
<div id="center">
|
|
|
|
<h1>Surveillance Fichier</h1>
|
|
<div class="paragraph">
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Mon identifiant</td>
|
|
<td width="350" class="StyleInfoData"><i><?=$this->login?></i></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Mon identité</td>
|
|
<td width="350" class="StyleInfoData"><i><?=$this->nom?></i></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<h2>Surveillance</h2>
|
|
<div class="paragraph">
|
|
<?php if (count($this->listeFichier)>0){ ?>
|
|
<table>
|
|
<?php foreach ($this->listeFichier as $infos) {?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td class="lienNormal">
|
|
<?php if ($infos['dejaLu']) { echo '<b>'; }?>
|
|
Liste des annonces du <?=$infos['date']?>
|
|
au format <a href="<?=$this->url(array('controller'=>'surveillance', 'action'=>'fichier', 'nomFic'=>$infos['fichier'], 'get'=>'ok'))?>" target="_blank">CSV</a>
|
|
ou au format <a href="<?=$this->url(array('controller'=>'surveillance', 'action'=>'fichier', 'nomFic'=>$infos['fichier']))?>">HTML</a>
|
|
ou au format <a href="<?=$this->url(array('controller'=>'surveillance', 'action'=>'fichier', 'nomFic'=>$infos['fichier']))?>" target="_blank" title="<?=$infos['fichier']?>">PDF</a>
|
|
<?php if ($infos['dejaLu']) { echo '</b>'; }?>
|
|
</td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
<?php } else { ?>
|
|
<div>Aucun fichier disponible !</div>
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|