root/tags/rel0_56/templates/delete_confirm.tt

Revision 617, 1.3 kB (checked in by dom, 4 years ago)

New css id maincontent, and misc template bugfixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1[% IF delete_version %]
2  [% INCLUDE header.tt page_title = "Confirm delete for version $delete_version of $node_name - $site_name" %]
3[% ELSE %]
4  [% INCLUDE header.tt page_title = "Confirm delete for $node_name - $site_name" %]
5[% END %]
6[% INCLUDE banner.tt %]
7<div id="content">
8[% INCLUDE navbar.tt %]
9<div id="maincontent">
10
11<h1>Confirm Deletion</h1>
12<p>
13[% IF delete_version %]
14  Are you sure you want to delete version [% delete_version %] of
15  <span class="node_name">[% node_name %]</span>?  This will completely
16  erase this version
17  and you will not be able to get it back.  If all versions are erased
18  then the page will cease to exist.
19[% ELSE %]
20  Are you sure you want to delete
21  <span class="node_name">[% node_name %]</span>?  This will
22  completely erase this page and all its history.
23[% END %]
24If so, please enter the admin
25password. If not, you can <a href="[% cgi_url %]?[% node_param %]">go back to the
26page</a>.
27</p>
28<form action="[% cgi_url %]" method="post">
29  <input type="hidden" name="action" value="delete" />
30  <input type="hidden" name="id" value="[% node_name %]" />
31  <input type="hidden" name="version" value="[% delete_version %]" />
32  <strong>Password:</strong>
33  <input type="password" name="password" />
34  <input type="submit" value="Delete" />
35</form>
36
37</div>
38[% INCLUDE footer.tt %]
Note: See TracBrowser for help on using the browser.