56 lines
1.9 KiB
PHTML
56 lines
1.9 KiB
PHTML
<style>
|
|
.color {
|
|
background-color:#DEDEDE;
|
|
}
|
|
#criteres {
|
|
border: 1px solid;
|
|
padding:10px 0;
|
|
margin: 0 1px;
|
|
}
|
|
|
|
#criteres tr td {
|
|
border-left: 1px solid black;
|
|
border-right: 1px solid black;
|
|
padding-left:5px;
|
|
}
|
|
</style>
|
|
<h2 style="text-align:center; background-color:#182838; padding:5px; color:white;">Résumé de vos critères</h2>
|
|
|
|
<div id="criteres">
|
|
|
|
<?php if ( count($this->infos)>0 ) {?>
|
|
<?php $color = 0;?>
|
|
<?php foreach($this->infos as $critere => $item) {?>
|
|
|
|
<div style="width:100%;" class="clearfix<?php echo ((($color%2) == 0) ? ' color' : ''); $color++; ?>">
|
|
|
|
<div style="float:left; margin:2px 0;">
|
|
<?=$item['label']?>
|
|
<?php if ( is_string($item['in']) && !empty($item['in']) ) { ?>
|
|
<br/> <?=$item['in']?>
|
|
<?php } elseif ( is_array($item['in']) || is_array($item['ex']) ) {?>
|
|
<br/> <a class="criterelist" href="<?=$this->url(array('controller'=>'index', 'action'=>'criterelist', 'key'=>$critere), null, true)?>">Liste</a>
|
|
<?php }?>
|
|
</div>
|
|
|
|
<div style="height:16px; width:16px; float:right;">
|
|
<a class="remove" href="<?=$this->url(array('controller'=>'index', 'action'=>'remove', 'critere'=>$critere), null, true)?>">
|
|
<img src="/themes/default/images/cross.png" />
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
<?php }?>
|
|
<?php }?>
|
|
|
|
</div>
|
|
|
|
<div style="text-align:center; border:1px solid #ffffff; background-color:#182838; padding:5px;">
|
|
<a style="color:white; text-decoration:none;" href="/comptage/reset">Initialiser les critères</a>
|
|
</div>
|
|
<div style="text-align:center; border:1px solid #ffffff; background-color:#182838; padding:5px;">
|
|
<a style="color:white; text-decoration:none;" class="saveciblage" href="/comptage/savedialog">Sauvegarder</a>
|
|
</div>
|
|
<div style="text-align:center; border:1px solid #ffffff; background-color:#182838; padding:5px;">
|
|
<a style="color:white; text-decoration:none;" class="previsualisation" href="/comptage/previsualisation">Prévisualisation</a>
|
|
</div>
|