aboutsummaryrefslogtreecommitdiff
path: root/templates/datafields/time.php
blob: 0fe3c929f72ce05d307c9ff60ef548d8690004d2 (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" : "" ?>
            maxlength="2" class="size-s no-hint has-time-picker"
            <? if ($model->is_required) echo 'required'; ?>>
    </div>
</label>