blob: fee0b63b24edc84df1d72875f9fca19b99d1c321 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<section>
<?php foreach ($files as $file): ?>
<i class="fa fa-file-o fa-fw"></i>
<?= $this->a(
$this->e($file['name']),
'file',
'download',
array('file_id' => $file['id'], 'task_id' => $file['task_id'])
) ?>
<br/>
<?php endforeach ?>
</section>
|