16 lines
351 B
PHTML
16 lines
351 B
PHTML
<div>
|
|
<?php if (count($this->errors)>0) {?>
|
|
<?php foreach($this->errors as $error) {?>
|
|
<p><?=$error?></p>
|
|
<?php }?>
|
|
<?php }?>
|
|
</div>
|
|
|
|
<?php if ($this->nb) {?>
|
|
<div>
|
|
<p>Votre fichier contient <?=$this->nb?> identifiants</p>
|
|
</div>
|
|
<?php }?>
|
|
<div>
|
|
<a href="<?=$this->url(array('controller'=>'index', 'action'=>'index'), null, true)?>">Accueil</a>
|
|
</div>
|