blob: cfdd2e28102be0375085131b4f4f1a9dbe3ebe66 (
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
33
34
35
36
37
|
<? if (!empty($studygroups)) : ?>
<table class="default sortable-table" id="my_seminars">
<caption>
<?= _('Meine Studiengruppen') ?>
</caption>
<colgroup>
<col width="10px">
<col width="25px">
<col>
<col>
<col width="<?= $nav_elements * 27 ?>px">
<? if (!$is_widget) : ?>
<col width="45px">
<? endif ?>
</colgroup>
<thead>
<tr class="sortable" title="<?= _('Klicken, um die Sortierung zu ändern') ?>">
<th colspan="2" nowrap align="center">
<a href="<?= URLHelper::getLink('dispatch.php/my_courses/groups/all/true') ?>"
data-dialog="size=normal">
<?= Icon::create('group')->asImg(['title' => _('Gruppe ändern'), 'class' => 'middle']) ?>
</a>
</th>
<th data-sort="text"><?= _('Name') ?></th>
<th data-sort="digit"><?= _('gegründet') ?></th>
<th><?= _('Inhalt') ?></th>
<? if (!$is_widget) : ?>
<th><?= _('Aktionen') ?></th>
<? endif ?>
</tr>
</thead>
<?= $this->render_partial('my_studygroups/_course', compact('studygroups')) ?>
</table>
<? else : ?>
<?= MessageBox::info(_('Sie haben bisher noch keine Studiengruppe gegründet oder sich in eine eingetragen.')) ?>
<? endif ?>
|