blob: 23e52f06f63f6f3922ba637c9985a7c9240d66be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<label>
<span class="datafield_title <?= $model->is_required ? 'required' : '' ?>">
<?= htmlReady($model->name) ?>
</span>
<? if ($model->description): ?>
<?= tooltipIcon($model->description) ?>
<? endif ?>
<div style="white-space: nowrap;">
<input type="text" name="<?= $name ?>[<?= $model->id ?>]"
value="<?= $value ?>" title="<?= _('Uhrzeit') ?>"
<?= !$entry->isEditable() ? "disabled" : "" ?>
class="size-s no-hint has-time-picker"
<? if ($model->is_required) echo 'required'; ?>>
</div>
</label>
|