aboutsummaryrefslogtreecommitdiff
path: root/app/views/vips/solutions/feedback_files.php
blob: 4630bb587d2a9d8b68b2154506ce0099dcf296be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * @var VipsSolution $solution
 */
?>
<? if ($solution->feedback_folder && count($solution->feedback_folder->file_refs) > 0): ?>
    <div class="label-text">
        <?= _('Dateien zur Korrektur:') ?>
    </div>

    <ul>
        <? foreach ($solution->feedback_folder->file_refs as $file_ref): ?>
            <li>
                <a href="<?= htmlReady($file_ref->getDownloadURL()) ?>">
                    <?= htmlReady($file_ref->name) ?>
                </a>
            </li>
        <? endforeach ?>
    </ul>
<? endif ?>