Development

This commit is contained in:
Matthew Grotke 2026-05-28 00:06:15 -04:00
parent 2cf7da37b8
commit 1de68e6e3f

View file

@ -1254,6 +1254,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'<div class="record-editor-table-wrap">' f'<div class="record-editor-table-wrap">'
f'<label class="form-label record-editor-label">{label}</label>'
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">'
@ -1264,7 +1265,6 @@ def _render_item(item, tokens, inherited_req=None):
f'</table>' f'</table>'
f'</div>' f'</div>'
f'<div class="record-editor-form">' f'<div class="record-editor-form">'
f'<label class="form-label record-editor-label">{label}</label>'
f'{form_rows}' f'{form_rows}'
f'<div style="margin-top:0.5rem">' f'<div style="margin-top:0.5rem">'
f'<button type="button" class="btn btn-secondary btn-sm record-editor-add-btn">Add</button>' f'<button type="button" class="btn btn-secondary btn-sm record-editor-add-btn">Add</button>'