aboutsummaryrefslogtreecommitdiff
path: root/app/views/shared/fachbereich_filter.php
blob: 6b82ec8801d5da054a006b024e9f6de732ad0a83 (plain)
1
2
3
4
5
6
7
8
9
<strong><?= _('Fachbereiche') ?></strong><br>
<form id="fachbereich_filter" action="<?= $action ?>" method="post">
    <select name="fachbereich_filter" size="1" style="width: 180px;" class="submit-upon-select">
        <option value=""><?= _('-- Fachbereich wählen --') ?></option>
        <? foreach ($fachbereiche as $fachbereich) : ?>
        <option value="<?= $fachbereich['fachbereich_id'] ?>"<?= ($fachbereich->getId() == $selected_fachbereich ? ' selected' : '') ?>><?= htmlReady($fachbereich->getDisplayName()) ?></option>
        <? endforeach; ?>
    </select>
</form>