16 lines
511 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 ) {?>
2012-11-19 09:58:43 +00:00
<a href="/fichier/groupes/<?=$doc->url?>"><?=$doc->label?></a>
2012-11-09 16:24:11 +00:00
<?php if ($this->edition) {?>
<a class="dialogDoc" title="Supprimer le document" href="<?=$this->url(array('controller'=>'saisie','action'=>'liendoc','mode'=>'delete','id'=>$doc->id), null, true)?>">
<img style="vertical-align:middle;" src="/themes/default/images/interfaces/supprimer.png" />
2012-11-09 16:24:11 +00:00
</a>
<?php }?>
<br/>
<?php }?>
<?php }?>