blob: 7690eb58246a329ac0f02db9d4f7fb51f73cd54c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<fieldset id="autoinsert-domain" class="autoinsert-selection">
<legend>
<?= _('Automatisches Eintragen mit Domänenzugehörigkeit:') ?>
</legend>
<?php foreach ($userdomains as $domain): ?>
<h2>
<?= htmlReady($domain['name']) ?>
</h2>
<section class="hgroup">
<label>
<input type="checkbox" name="rechte[domain][<?= $domain['id'] ?>][]" value="dozent">
<?= _('Dozent') ?>
</label>
<label>
<input type="checkbox" name="rechte[domain][<?= $domain['id'] ?>][]" value="tutor">
<?= _('Tutor') ?>
</label>
<label>
<input type="checkbox" name="rechte[domain][<?= $domain['id'] ?>][]" value="autor">
<?= _('Autor') ?>
</label>
</section>
<?php endforeach; ?>
</fieldset>
|