Amélioration style liste des dernières recherche
This commit is contained in:
parent
841ddc9ab4
commit
095f970cde
@ -1,15 +1,16 @@
|
||||
<div id="center">
|
||||
<h1>LISTE DE VOS DERNIÈRES RECHERCHE</h1>
|
||||
<?php if (count($this->historique)>0) {?>
|
||||
<div class="paragraph">
|
||||
|
||||
<ul class="derniereRecherche">
|
||||
<?php foreach($this->historique as $histo) {?>
|
||||
<li>
|
||||
<?php
|
||||
switch($histo['type']){
|
||||
|
||||
switch($histo['type'])
|
||||
{
|
||||
case 'ent':
|
||||
?>
|
||||
<p><u>RECHERCHE ENTREPRISE :</u></p>
|
||||
<p>RECHERCHE ENTREPRISE :</p>
|
||||
|
||||
<?php if (!empty($histo['params']['siret'])) {?>SIRET : <?=$histo['params']['siret']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['raisonSociale'])) {?>Raison Sociale : <?=$histo['params']['raisonSociale']?><br/><?php } ?>
|
||||
@ -33,7 +34,7 @@
|
||||
array('controller' => 'recherche', 'action' => 'liste'),
|
||||
array_merge($histo['params'], array('type'=>$histo['type'])))
|
||||
)?>">Lancer la recherche</a>
|
||||
<br/>
|
||||
-
|
||||
<a href="<?=$this->url(array_merge(
|
||||
array('controller' => 'recherche', 'action' => 'entreprise'),
|
||||
$histo['params'])
|
||||
@ -44,7 +45,7 @@
|
||||
|
||||
case 'dir':
|
||||
?>
|
||||
<p><u>RECHERCHE DIRIGEANT :</u></p>
|
||||
<p>RECHERCHE DIRIGEANT :</p>
|
||||
|
||||
<?php if (!empty($histo['params']['dirNom'])) {?>Nom : <?=$histo['params']['dirNom']?><br/><?php } ?>
|
||||
<?php if (!empty($histo['params']['dirPrenom'])) {?>Prenom : <?=$histo['params']['dirPrenom']?><br/><?php } ?>
|
||||
@ -66,18 +67,18 @@
|
||||
array('controller' => 'recherche', 'action' => 'liste'),
|
||||
array_merge($histo['params'], array('type'=>$histo['type'])))
|
||||
)?>">Lancer la recherche</a>
|
||||
<br/>
|
||||
-
|
||||
<a href="<?=$this->url(array_merge(
|
||||
array('controller' => 'recherche', 'action' => 'dirigeant'),
|
||||
$histo['params'])
|
||||
)?>">Afficher le formulaire</a>
|
||||
|
||||
|
||||
|
||||
<?php
|
||||
break;
|
||||
}
|
||||
?>
|
||||
</li>
|
||||
</ul>
|
||||
<?php }?>
|
||||
</div>
|
||||
<?php } else {?>
|
||||
|
@ -76,6 +76,18 @@ form.recherche select {
|
||||
border:1px solid #999999;
|
||||
}
|
||||
|
||||
ul.derniereRecherche {
|
||||
margin:5px;
|
||||
}
|
||||
|
||||
ul.derniereRecherche li {
|
||||
margin:0 5px;
|
||||
}
|
||||
|
||||
ul.derniereRecherche p {
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
ol {
|
||||
text-align:left;
|
||||
margin:10px;
|
||||
|
Loading…
Reference in New Issue
Block a user