format_error

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "format_error".
... in utilities.naml
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
<macro name="format_error" dot_parameter="message" parameters="prompt">
    <n.set_var. name="message"><n.message/></n.set_var.>
    <n.set_var. name="prompt"><n.prompt/></n.set_var.>
    <n.if.not.is_empty.trim.var name="message">
        <then>
            <table class="error-message" style="width:100%">
                <tr>
                    <td style="padding:.4em;width:40px;">
                        <img src="/images/icon_alert.png" class="image32"/>
                    </td>
                    <td style="padding:.4em;">
                        <strong><n.var name="message"/></strong>
                        <n.if.not.is_null.var name="prompt">
                            <then><div style="padding-top:.3em"><n.prompt/></div></then>
                        </n.if.not.is_null.var>
                    </td>
                </tr>
            </table>
        </then>
    </n.if.not.is_empty.trim.var>
</macro>