blob: ad773cdd538b3f90b920f837c0e7c948dc3f296c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<td colspan="3">
<table class="default">
<colgroup>
<col>
<col style="width: 40%">
<col style="width: 1%">
</colgroup>
<?php $abschluesse = $fach->getAbschluesse()?>
<? foreach ($abschluesse as $abschluss) : ?>
<tr>
<td><?= htmlReady($abschluss->getDisplayName()) ?></td>
<td><?= htmlReady($abschluss->category->getDisplayName()) ?></td>
<td class="actions">
<? if (MvvPerm::havePermWrite($abschluss)) : ?>
<a data-dialog href="<?= $controller->action_link('abschluss/' . $abschluss->id) ?>">
<?= Icon::create('edit', Icon::ROLE_CLICKABLE, ['title' => _('Abschluss bearbeiten')])->asImg(); ?>
</a>
<? endif; ?>
</td>
</tr>
<? endforeach; ?>
</table>
</td>
|