import { html } from "lit"; import { __ } from 'i18n'; const tpl_field = (f) => html`
`; export default (el) => { return html`
el.onConfimation(ev)}>
${ el.model.get('messages')?.map(message => html`

${message}

`) }
${ el.model.get('fields')?.map(f => tpl_field(f)) }
`; }