aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/autoinsert/_degrees.php
blob: 751169dc12825639eb8569f6a1f21b6e79396824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<fieldset id="autoinsert-degree" class="autoinsert-selection hidden-js">
    <legend>
        <?= _('Automatisches Eintragen mit Abschluss:') ?>
    </legend>

    <?php foreach ($degrees as $degree): ?>
        <section class="col-2">
            <label>
                <input type="checkbox" name="rechte[degree][]" value="<?= $degree->id ?>">
                <?= htmlReady($degree->name) ?>
            </label>
        </section>
    <?php endforeach; ?>
</fieldset>