Fix minore pianificazione interventi

This commit is contained in:
Pek5892 2023-05-12 09:53:26 +02:00
parent a45237a0f9
commit 68b4e68275
1 changed files with 12 additions and 3 deletions

View File

@ -120,9 +120,18 @@ echo '
</div>
<div class="row">
<div class="col-md-12">
{[ "type": "textarea", "label": "'.tr('Descrizione').'", "name": "richiesta", "id": "richiesta_", "readonly": '.intval($block_edit).', "value": "'.$record['richiesta'].'" ]}
</div>
<div class="col-md-12">';
echo input([
'type' => 'ckeditor',
'label' => tr('Richiesta'),
'name' => 'richiesta',
'required' => 1,
'readonly' => $record['flag_completato'],
'extra' => 'rows="5"',
'value' => $record['richiesta'],
]);
echo '
</div>
</div>
</div>
</div>';