summaryrefslogtreecommitdiff
path: root/app/Templates/file_show.php
blob: 674861dd98e374ba22ed9d4f152f03775e2c45c1 (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="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>