24 lines
849 B
PHTML
24 lines
849 B
PHTML
<?php if ($this->CiblageError) { ?>
|
|
|
|
<div id="CiblageError">
|
|
Erreur ! Le moteur de ciblage n'est pas disponible !
|
|
</div>
|
|
|
|
<?php } else {?>
|
|
<div id="panel"><?=$this->action('criteres', 'index')?></div>
|
|
<div id="tabs">
|
|
<ul>
|
|
<li><a href="#tabs-1">Critères Entreprise</a></li>
|
|
<li><a href="#tabs-2">Situation économique</a></li>
|
|
<li><a href="#tabs-3">Secteur géographique</a></li>
|
|
<li><a href="#tabs-4">Situation juridique</a></li>
|
|
<li><a href="#tabs-5">Situation financière</a></li>
|
|
</ul>
|
|
<div id="tabs-1"><?=$this->action('index', 'entreprise')?></div>
|
|
<div id="tabs-2"><?=$this->action('index', 'economique')?></div>
|
|
<div id="tabs-3"><?=$this->action('index', 'geographique')?></div>
|
|
<div id="tabs-4"><?=$this->action('index', 'juridique')?></div>
|
|
<div id="tabs-5"><?=$this->action('index', 'financier')?></div>
|
|
</div>
|
|
<?php }?>
|