You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
701 B
30 lines
701 B
extends ../base/master
|
|
|
|
block append css
|
|
link[rel="stylesheet"][href="/ui/css/form.css"]
|
|
|
|
block append js
|
|
script[type="text/javascript"][src="/ui/js/form-page.js"]
|
|
|
|
block menu
|
|
import menu
|
|
|
|
block main
|
|
$page = $.Page
|
|
|
|
article
|
|
h1.danger Delete
|
|
form[action=$page.OpPath("delete")][method="POST"]
|
|
p.danger This is irreversible, so make sure you are deleting the right page.
|
|
|
|
ul
|
|
li <b>ID:</b> #{$.Page.ID}
|
|
li <b>Name:</b> #{$.Page.Name}
|
|
li <b>Category:</b> #{$.Page.Category}
|
|
li <b>Published:</b> #{formatDateLong($.Page.PublishDate)}
|
|
ul
|
|
|
|
input[type="hidden"][name="aft"][value=$.User.SessionID]
|
|
|
|
|
|
button[type="submit"] Delete
|