aboutsummaryrefslogtreecommitdiff
path: root/app/views/calendar/instschedule/_entry_details.php
blob: 7fd4a38bd2bea1cd1f59def4476122bbd91e4dec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<table class="default">
    <caption>
        <?= sprintf(_('Veranstaltungen mit regelmäßigen Zeiten am %s, %s Uhr'), htmlReady($day), htmlReady($start) .' - '. htmlReady($end)) ?>
    </caption>
    <colgroup>
        <col width="15%">
        <col width="85%">
    </colgroup>
    <thead>
        <tr>
            <th><?= _('Nummer') ?></th>
            <th><?= _('Name') ?></th>
        </tr>
    </thead>
    <tbody>
        <? foreach ($seminars as $seminar) : ?>
            <tr class="<?= TextHelper::cycle('table_row_odd', 'table_row_even')?>">
                <td><?= htmlReady($seminar->getNumber()) ?></td>
                <td>
                    <a href="<?= URLHelper::getLink('dispatch.php/course/details/', ['sem_id' => $seminar->getId()]) ?>">
                        <?= Icon::create('link-intern', 'clickable')->asImg() ?>
                        <?= htmlReady($seminar->getName()) ?>
                    </a>
                </td>
            </tr>
        <? endforeach ?>
    </tbody>
</table>
<br>