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

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