aboutsummaryrefslogtreecommitdiff
path: root/app/views/fachabschluss/faecher/details_fachbereich.php
blob: 6ca7dc27e922355087f67929deedda520e435b71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<td colspan="2">
    <table class="default">
        <colgroup>
            <col>
            <col style="width: 1%">
        </colgroup>
        <? foreach ($faecher as $fach) : ?>
            <tr>
                <td class="label-cell">
                    <?= htmlReady($fach->name) ?>
                </td>
                <td class="actions">
                    <? if (MvvPerm::havePermWrite($fach)) : ?>
                        <a href="<?= $controller->action_link('fach/' . $fach->id) ?>">
                            <?= Icon::create('edit', Icon::ROLE_CLICKABLE, ['title' => _('Fach bearbeiten')])->asImg(); ?>
                        </a>
                    <? endif; ?>
                </td>
            </tr>
        <? endforeach; ?>
    </table>
</td>