Skip to content

Tables

Use table.data for static tabular content. For inline-editable rows (add/delete/reorder), reach for forms.editableTableField, which wires up the JS for you.

NameHandleTypeStatus
Featured ImagefeaturedImageAssets Enabled
BodybodyCKEditor Enabled
Legacy TagslegacyTagsTags Disabled
{{ forms.editableTableField({
    label: "Redirects",
    name: "redirects",
    cols: {
        from: { heading: "From", type: "singleline" },
        to:   { heading: "To",   type: "singleline" },
    },
    rows: settings.redirects,
    addRowLabel: "Add a redirect",
}) }}