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