60
|
1 <!DOCTYPE html
|
|
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
4 <html xmlns="http://www.w3.org/1999/xhtml"
|
|
5 xmlns:py="http://purl.org/kid/ns#"
|
|
6 xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
7 <xi:include href="layout.html"><xi:fallback/></xi:include>
|
|
8 <head>
|
|
9 <title>${attachment.title} (delete)</title>
|
|
10 </head>
|
|
11
|
|
12 <body>
|
|
13 <div id="ctxtnav" class="nav"></div>
|
|
14
|
|
15 <div id="content" class="attachment">
|
|
16 <h1><a href="${attachment.parent_href(req)}">${attachment.parent_id}</a>:
|
|
17 ${attachment.filename}
|
|
18 </h1>
|
|
19 <p><strong>Are you sure you want to delete this attachment?</strong><br />
|
|
20 This is an irreversible operation.</p>
|
|
21 <div class="buttons">
|
|
22 <form method="post" action=""><div id="delete">
|
|
23 <input type="hidden" name="action" value="delete" />
|
|
24 <input type="submit" name="cancel" value="Cancel" />
|
|
25 <input type="submit" value="Delete attachment" />
|
|
26 </div></form>
|
|
27 </div>
|
|
28 </div>
|
|
29
|
|
30 </body>
|
|
31 </html>
|