<ul class="documentsList">
<?php foreach($this->documents as $doc): ?>
	<li>
				<?= $doc->label ?>
				<?php
				 	if($doc->isUrl){
				 		$url = $doc->url;
				 		$ltxt = $this->translate('#view#');
				 	}else{
				 		$url = $doc->path;
				 		$ltxt= $this->translate('#download#');
				 	} ?>

				 : <a href="<?= $url ?>" class="link" data-content="<?= htmlspecialchars($doc->description) ?>" title="<?= $doc->label ?>" target="_blank" ><?= $ltxt ?></a>
			</li>
	
<?php endforeach; ?>
</ul>
