aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/courses/aux_preselect.php
blob: 86e88befb0e816050a37f9e4dba66e4f111ddbd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<label><?= _('Für alle Veranstaltungen') ?>
    <select name="lock_sem_all" style="max-width: 200px">
        <? foreach ($aux_lock_rules as $id => $rule) : ?>
            <option value="<?= $id ?>"
                <?= ($values['aux_lock_rule'] == $id) ? 'selected' : '' ?>>
                <?= htmlReady($rule["name"]) ?>
            </option>
        <? endforeach ?>
    </select>
</label>
<label>
<input type="checkbox" value="1" name="aux_all_forced">
<?=_("Erzwungen")?>
</label>
<?= \Studip\Button::createAccept(_('Speichern'), 'all'); ?>