summaryrefslogtreecommitdiff
path: root/app/Template/board/files.php
blob: 278b906b92b12338250a670201cef7591d513d10 (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'], 'project_id' => $task['project_id'])
        ) ?>

        <br/>
    <?php endforeach ?>
</section>