aboutsummaryrefslogtreecommitdiff
path: root/app/views/course/topics/_dates.php
blob: 739b802d6c43c082216cc53ec2b9e3c18c92e5f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<ul class="clean">
    <? foreach ($topic->dates as $date) : ?>
        <li>
            <a href="<?= URLHelper::getLink('dispatch.php/course/dates/details/' . $date->id) ?>"
               data-dialog="size=auto"
               style="white-space: nowrap"
           >
                <?= Icon::create('date')->asImg(['class' => 'text-bottom']) ?>
                <?= htmlReady($date->getFullName()) ?>
            </a>
        </li>
    <? endforeach ?>
</ul>