16 lines
351 B
PHTML
Raw Normal View History

2012-01-19 15:25:47 +00:00
<div>
<?php if (count($this->errors)>0) {?>
<?php foreach($this->errors as $error) {?>
<p><?=$error?></p>
2012-01-19 15:25:47 +00:00
<?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>