summaryrefslogtreecommitdiff
path: root/app/Templates/file_show.php
blob: b570de2dc9720e350058efde415f1672f5882cc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="page-header">
    <h2><?= t('Attachments') ?></h2>
</div>

<ul class="task-show-files">
<?php foreach ($files as $file): ?>
    <li>
        <a href="?controller=file&amp;action=download&amp;file_id=<?= $file['id'] ?>&amp;task_id=<?= $task['id'] ?>"><?= Helper\escape($file['name']) ?></a>
        <span class="task-show-file-actions">
            <?php if ($file['is_image']): ?>
                <a href="?controller=file&amp;action=open&amp;file_id=<?= $file['id'] ?>&amp;task_id=<?= $task['id'] ?>" class="file-popover"><?= t('open') ?></a>,
            <?php endif ?>
            <a href="?controller=file&amp;action=confirm&amp;file_id=<?= $file['id'] ?>&amp;task_id=<?= $task['id'] ?>"><?= t('remove') ?></a>
        </span>
    </li>
<?php endforeach ?>
</ul>