aboutsummaryrefslogtreecommitdiff
path: root/templates/filesystem/homework_folder/description.php
blob: b3bc7f1b389d446022c478efcf2a345771d23d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div style="font-style: italic">
    <?=_("Dieser Ordner ist ein Hausaufgabenordner. Es können nur Dateien eingestellt werden.")?>
</div>
<? if (!empty($own_files) && count($own_files) > 0) : ?>
<?= _("Sie selbst haben folgende Dateien in diesen Ordner eingestellt:") ?>
    <ul>
        <? foreach ($own_files as $own_file) :?>
            <li><?=htmlReady($own_file->name)?> - <?=strftime('%x %X', $own_file->chdate)?></li>
        <? endforeach ?>
    </ul>
<? endif ?>
<? if ($folderdata['description']) : ?>
<hr>
    <div>
        <?= formatReady($folderdata['description']) ?>
    </div>
<? endif ?>