18 lines
668 B
Plaintext
18 lines
668 B
Plaintext
<%#
|
|
Admin destructive-action confirmation page (todo §5): the confirm body in the app shell. Model
|
|
from buildConfirmModel: { message, confirm:{action,label}, cancelHref, nav, shell }.
|
|
%><%
|
|
const nav = include("partials/nav-tree", { nodes: model.nav });
|
|
const body = include("partials/confirm-body", { cancelHref: model.cancelHref, confirm: model.confirm, csrfToken: model.shell.csrfToken, message: model.message });
|
|
-%>
|
|
<%- include("partials/shell", {
|
|
body,
|
|
brand: model.shell.brand,
|
|
breadcrumbs: model.shell.breadcrumbs,
|
|
csrfToken: model.shell.csrfToken,
|
|
nav,
|
|
theme: model.shell.theme,
|
|
title: model.shell.title,
|
|
user: model.shell.user,
|
|
}) %>
|