blob: 4fc37f6c89d829bb77c01ee3c901f783e46a412d (
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')->asSvg(['class' => 'text-bottom']) ?>
<?= htmlReady($date->getFullName()) ?>
</a>
</li>
<? endforeach ?>
</ul>
|