96 lines
3.3 KiB
PHTML
96 lines
3.3 KiB
PHTML
<ul class="chemin clearfix rounded_t">
|
|
<li class="e0"><a class="lir" href="/">Accueil</a></li>
|
|
<li>
|
|
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>'index'))?>">
|
|
<span><?=$this->translate('Tableau de bord')?></span>
|
|
</a>
|
|
</li>
|
|
<li class="last">
|
|
<span></span>
|
|
</li>
|
|
</ul>
|
|
|
|
<div id="dashboard">
|
|
|
|
<div id="menu">
|
|
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>'ciblages'))?>"><?=$this->translate('Liste de vos ciblages')?></a> -
|
|
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>'enrichissements'))?>"><?=$this->translate('Liste de vos enrichissements')?></a> -
|
|
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>'configuration'))?>"><?=$this->translate('Préférences de l\'application')?></a> -
|
|
<a href="<?=$this->url(array('controller'=>'dashboard', 'action'=>''))?>"><?=$this->translate('Enrichissement de fichier')?></a>
|
|
</div>
|
|
|
|
<div id="rechercheCiblage">
|
|
<h2><?=$this->translate('Rechercher dans vos ciblages')?></h2>
|
|
<input type="text" name="searchCiblage" class="searchCiblage" />
|
|
<input type="submit" value="<?=$this->translate('Rechercher')?>" class="submit"/>
|
|
</div>
|
|
|
|
<div id="lastCiblage">
|
|
<h2><?=$this->translate('Vos derniers ciblages')?></h2>
|
|
<?php if(count($this->comptages) > 0):?>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th><?=$this->translate('Référence')?></th>
|
|
<th><?=$this->translate('Nombre d\'entité')?></th>
|
|
<th><?=$this->translate('Unité Insee')?></th>
|
|
<th>Date</th>
|
|
<th colspan="4"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($this->comptages as $name => $item):?>
|
|
<tr>
|
|
<td class="reference"><?=$item['reference']?></td>
|
|
<td class="update resultat"><?=number_format($item['resultat'], 0, ',', ' ')?></td>
|
|
<td class="update insee"><?=number_format($item['uniteInsee'], 0, ',', ' ')?></td>
|
|
<td class="update date"><?=$item['dateComptage']?></td>
|
|
<td><a href="<?=$this->url(array('controller'=> 'dashboard','action'=>'ciblage', 'id'=>$item['id']))?>">Detail</a></td>
|
|
<td><a href="<?=$this->url(array('controller'=> 'index','action'=>'index', 'id'=>$item['id']))?>"><?=$this->translate('Charger les critères de ciblage dans l\'interface')?></a></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<?php else:?>
|
|
<p><?=$this->translate('Aucun ciblage')?>.<p>
|
|
<?php endif;?>
|
|
</div>
|
|
|
|
|
|
<div id="lastEnrichissement">
|
|
<h2><?=$this->translate('Vos derniers enrichissements')?></h2>
|
|
<?php if(count($this->enrichissements) > 0):?>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Référence</th>
|
|
<th>Nombre de lignes totales</th>
|
|
<th>Date</th>
|
|
<th>Etat</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($this->enrichissements as $item):?>
|
|
<tr>
|
|
<td><?=$item['reference']?></td>
|
|
<td><?=number_format($item['nbLigneTotales'], 0, ',', ' ')?></td>
|
|
<td><?=$item['dateAdded']?></td>
|
|
<td>
|
|
<?php if ( $item['dateStop']!='0000-00-00 00:00:00' ) {?>
|
|
<a href="/enrichissement/download/id/<?php echo $item['id'];?>"><?php echo $item['fichier']; ?></a>
|
|
<?php }elseif ( $item['dateStart']!='0000-00-00 00:00:00' ) {?>
|
|
En cours de traitement
|
|
<?php } else {?>
|
|
En attente de traitement
|
|
<?php } ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<?php else:?>
|
|
<p><?=$this->translate('Aucun enrichissement')?>.<p>
|
|
<?php endif;?>
|
|
</div>
|
|
|
|
</div>
|