Development

This commit is contained in:
Matthew Grotke 2026-05-27 23:57:56 -04:00
parent 5231e27996
commit 15b7b7aff6

View file

@ -1257,6 +1257,7 @@ def _render_item(item, tokens, inherited_req=None):
f'<div class="form-group record-editor" data-name="{name}" data-empty-message="{empty}">' f'<div class="form-group record-editor" data-name="{name}" data-empty-message="{empty}">'
f'<div class="record-editor-body">' f'<div class="record-editor-body">'
f'<label class="form-label record-editor-label">{label}</label>' f'<label class="form-label record-editor-label">{label}</label>'
f'<div class="record-editor-table-wrap">'
f'<table class="data-table record-editor-table">' f'<table class="data-table record-editor-table">'
f'<thead><tr>{ths}</tr></thead>' f'<thead><tr>{ths}</tr></thead>'
f'<tbody class="record-editor-rows">' f'<tbody class="record-editor-rows">'
@ -1265,6 +1266,7 @@ def _render_item(item, tokens, inherited_req=None):
f'</tr>' f'</tr>'
f'</tbody>' f'</tbody>'
f'</table>' f'</table>'
f'</div>'
f'<div class="record-editor-form">' f'<div class="record-editor-form">'
f'<div class="{grid_class}">{form_rows}</div>' f'<div class="{grid_class}">{form_rows}</div>'
f'<div style="margin-top:0.5rem">' f'<div style="margin-top:0.5rem">'