blob: af119c554dc2012486a4207a00782cc3fb5355e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<label>
<span class="datafield_title <?= $model->is_required ? 'required' : '' ?>">
<?= htmlReady($model->name) ?>
</span>
<? if ($model->description): ?>
<?= tooltipIcon($model->description) ?>
<? endif ?>
<textarea name="<?= $name ?>[<?= $model->id ?>]"
<?= !$entry->isEditable() ? "disabled" : "" ?>
id="<?= $name ?>_<?= $model->id ?>"
rows="6"
<? if ($model->is_required) echo 'required'; ?>
><?= htmlReady($value) ?></textarea>
</label>
|