Fix minore

This commit is contained in:
Pek5892 2024-05-17 12:54:03 +02:00
parent dcee9a7dc7
commit 63f42c130c
2 changed files with 6 additions and 2 deletions

View File

@ -147,6 +147,10 @@ input[type=file] {
padding-top: 10px;
}
.content {
padding: 0 20px !important;
}
.navbar a:hover,
.brand-link:hover,
.alert a,

View File

@ -55,10 +55,10 @@ echo '
<input type="hidden" name="id_record" value="'.$id_record.'">
<div class="row">
<div class="col-md-4 offset-md-4">
<div class="col-md-2 offset-md-8">
{[ "type": "select", "label": "'.tr('Tags').'", "multiple": "1", "name": "tags[]", "values": "query=SELECT `id`, `name` as descrizione FROM `in_tags` ORDER BY `name`", "value": "'.implode(',', $tags).'", "icon-after": "add|'.(new Module())->getByField('title', 'Tags').'|" ]}
</div>
<div class="col-md-4">
<div class="col-md-2">
{[ "type": "select", "label": "'.tr('Stato').'", "name": "idstatointervento", "required": 1, "values": "query=SELECT `in_statiintervento`.`id`, `title` as descrizione, `colore` AS _bgcolor_ FROM `in_statiintervento` LEFT JOIN `in_statiintervento_lang` ON (`in_statiintervento`.`id` = `in_statiintervento_lang`.`id_record` AND `in_statiintervento_lang`.`id_lang` ='.prepare(Models\Locale::getDefault()->id).') WHERE `deleted_at` IS NULL ORDER BY `title`", "value": "$idstatointervento$", "class": "unblockable" ]}
</div>
</div>