blob: 44c6d21ef153ec51bc414878762b25bcc682f0e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div class="formpart" data-form-input-for="<?= htmlReady($name) ?>">
<label<?= ($this->required ? ' class="studiprequired"' : '') ?> for="<?= $id ?>">
<span class="textlabel">
<?= htmlReady($this->title) ?>
</span>
<? if ($this->required) : ?>
<span class="asterisk" title="<?= _('Dies ist ein Pflichtfeld') ?>" aria-hidden="true">*</span>
<? endif ?>
</label>
<datetimepicker v-model="<?= htmlReady($name) ?>"
name="<?= htmlReady($name) ?>"
id="<?= $id ?>"
<?= ($this->required ? 'required aria-required="true"' : '')?>
<?= $attributes ?>>
</div>
|