aboutsummaryrefslogtreecommitdiff
path: root/app/views/my_courses/courseexport.php
blob: d9531877acdb74bed06184b3802735da013dc65f (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
30
31
32
<html>
    <head>
       <meta charset="UTF-8">
        <title><?= _('Export Veranstaltungsübersicht') ?></title>
        <style>
            table {
                border: 1px solid #000;
            }
            th {
                font-weight: bold;
                background-color: #c7c7c7;
                border: 1px solid #a8a8a8;
            }
            td {
                border: 1px solid #c7c7c7;
            }
        </style>
    </head>
    <body>
    <? if ($sem_courses && is_array($sem_courses)) : ?>
        <h1><?= _('Meine Veranstaltungen'); ?></h1>
        <div id="my_seminars">
        <? foreach ($sem_courses as $sem_key => $course_group) : ?>
            <h2><?= htmlReady($sem_data[$sem_key]['name']) ?></h2>
            <?= $this->render_partial('my_courses/_exportcourse', [
                'course_collection' => $course_group,
            ]) ?>
        <? endforeach ?>
        </div>
    <? endif ?>
    </body>
</html>