aboutsummaryrefslogtreecommitdiff
path: root/app/views/course/wizard/steps/advancedbasicdata/index.php
blob: 30d034ccee0157f8fb57d3dc1d100a13609b76fe (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', ['values' => $values]) ?>

<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>