blob: f5060b0262f445aed62c4c49999eb8236a38fb92 (
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
26
|
<?= $this->render_partial('basicdata/index.php', ['value' => $value]) ?>
<section>
<label for="wizard-subtitle">
<?= _('Untertitel') ?>
</label>
<?= I18N::input('subtitle', $values['subtitle'], ['id' => 'wizard-subtitle', 'size' => 75, 'maxlength' => 254]) ?>
</section>
<section>
<label for="wizard-kind">
<?= _('Veranstaltungsart') ?>
</label>
<?= I18N::input('kind', $values['kind'], ['id' => 'wizard-kind', 'size' => 75, 'maxlength' => 254]) ?>
</section>
<section>
<label for="wizard-ects">
<?= _('ECTS-Punkte') ?>
</label>
<input type="text" name="ects" id="wizard-ects" size="20" maxlength="32" value="<?= htmlReady($values['ects']) ?>"/>
</section>
<section>
<label for="wizard-maxmembers">
<?= _('max. Teilnehmendenzahl') ?>
</label>
<input type="number" name="maxmembers" id="wizard-maxmember" min="0" value="<?= htmlReady($values['maxmembers']) ?>"/>
</section>
|