37 lines
1.3 KiB
PHTML
37 lines
1.3 KiB
PHTML
<?php if ($this->CiblageError) { ?>
|
|
|
|
<div id="CiblageError">
|
|
Erreur ! Le moteur de ciblage n'est pas disponible !
|
|
</div>
|
|
|
|
<?php } else {?>
|
|
<div id="actionMessage">
|
|
|
|
<div class="ui-state-highlight ui-corner-all" style="padding: .7em;">
|
|
<p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span>
|
|
<strong>Hey!</strong> Sample ui-state-highlight style.</p>
|
|
</div>
|
|
|
|
<div class="ui-state-error ui-corner-all" style="padding: .7em;">
|
|
<p><span class="ui-icon ui-icon-alert" style="float: left; margin-right: .3em;"></span>
|
|
<strong>Alert:</strong> Sample ui-state-error style.</p>
|
|
</div>
|
|
|
|
</div>
|
|
<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 }?>
|