17 lines
438 B
PHTML
Raw Normal View History

2012-11-09 16:24:11 +00:00
<?php if (count($this->docs)==0) {?>
Aucun document.
<?php } else {?>
<?php foreach ( $this->docs as $doc ) {?>
<a href="#<?php echo $doc->url?>"><?=$doc->label?></a>
2012-11-09 16:24:11 +00:00
<?php if ($this->edition) {?>
<a title="Supprimer le document" href="<?=$this->url(array('controller'=>'saisie','action'=>'liendoc','id'=>$doc->id), null, true)?>">
<img src="/themes/default/images/interfaces/supprimer.png" />
</a>
<?php }?>
<br/>
<?php }?>
<?php }?>