blob: 202c9deb5b759a8fdb44423a7812a3c12e5900b1 (
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
38
39
40
41
|
<?php
/**
* Copyright (c) 2012 Rasmus Fuhse <fuhse@data-quest.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* @var Admin_SemClassesController $controller
*/
?>
<table class="default">
<thead>
<tr>
<th><?= _("ID") ?></th>
<th><?= _("Veranstaltungskategorie") ?></th>
<th><?= _("Anzahl Veranstaltungstypen") ?></th>
<th><?= _("Anzahl Veranstaltungen") ?></th>
<th><?= _("Zuletzt geƤndert") ?></th>
<th></th>
</tr>
</thead>
<tbody>
<? foreach ($GLOBALS['SEM_CLASS'] as $id => $sem_class) : ?>
<tr>
<td class="id"><?= htmlReady($id) ?></td>
<td><?= htmlReady($sem_class['name']) ?></td>
<td><?= count($sem_class->getSemTypes()) ?></td>
<td><?= $sem_class->countSeminars() ?></td>
<td><?= date("j.n.Y H:i", $sem_class['chdate']) ?> <?= _("Uhr") ?></td>
<td class="actions">
<a href="<?= URLHelper::getLink('dispatch.php/admin/sem_classes/details', ['id' => $id]) ?>" title="<?= _('Editieren dieser Veranstaltungskategorie') ?>">
<?= Icon::create('edit')->asSvg(['class' => 'text-bottom']) ?>
</a>
</td>
</tr>
<? endforeach ?>
</tbody>
</table>
|