2012-05-15 11:38:51 +00:00
< 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 > Tableau de bord< / span >
< / a >
< / li >
< li class = "last" >
< span > Liste de vos ciblages< / span >
< / li >
< / ul >
2012-02-02 17:29:14 +00:00
2012-05-15 11:38:51 +00:00
< div id = "dashboard" >
2012-02-02 17:29:14 +00:00
< div style = "margin:5px 0;" >
< h2 > Liste de vos ciblages< / h2 >
<?php if ( count ( $this -> ciblages ) > 0 ) : ?>
< table class = "ciblage" >
< thead >
< tr >
< th > Référence< / th >
< th > Nombre d'entité< / th >
< th > Unité Insee< / th >
< th > Date< / th >
2012-02-22 09:24:38 +00:00
< th colspan = "4" > < / th >
2012-02-02 17:29:14 +00:00
< / tr >
< / thead >
< tbody >
<?php foreach ( $this -> ciblages as $item ) : ?>
< tr >
2012-02-22 14:47:16 +00:00
< td class = "reference" > <? = $item [ 'reference' ] ?> </ td >
2012-02-22 15:40:19 +00:00
< td class = "update resultat" > <? = number_format ( $item [ 'resultat' ], 0 , ',' , ' ' ) ?> </ td >
< td class = "update insee" > <? = number_format ( $item [ 'uniteInsee' ], 0 , ',' , ' ' ) ?> </ td >
2012-05-15 11:38:51 +00:00
< td class = "update date" > <? = $item [ 'dateComptage' ] ?> </ td >
2012-02-27 08:31:19 +00:00
< td >< a href = " <? = $this -> url ( array ( 'controller' => 'dashboard' , 'action' => 'ciblage' , 'id' => $item [ 'id' ])) ?> " > Detail</ a ></ td >
2012-05-25 13:24:30 +00:00
< td >< a href = " <? = $this -> url ( array ( 'controller' => 'index' , 'action' => 'index' , 'id' => $item [ 'id' ])) ?> " > Charger les critères de ciblage dans l'interface</ a ></ td >
2012-02-02 17:29:14 +00:00
< / tr >
<?php endforeach ; ?>
< / tbody >
< / table >
<?php else : ?>
< p > Aucun ciblage.< p >
<?php endif ; ?>
< / div >
< / div >