aboutsummaryrefslogtreecommitdiff
path: root/interface/admin_delete.tmpl
blob: bf6d8a295fd0cb39c78115f11d14aa8c3844d8f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<meta name="robots" content="noindex,nofollow" />
		<title>cargohold</title>
		<link rel="stylesheet" href="/assets/cargohold.css" />
		<link rel="stylesheet" href="/assets/admin.css" />
		<link rel="icon" href="/assets/cargohold.ico" />
	</head>
	<body>
		<div id="header">
			cargohold - Administration
		</div>
		<div id="container">
			<div id="message">
				This will delete the directory <span class="highlight">{{ directory }}</span>.
				<br />
				This directory still contains {{ listing | length }} files.
			</div>
			<div id="dirlisting">
				{% for file in listing %}
					<div class="entry">
						<a class="file" href="#">{{ file.name }}</a>
					</div>
				{% endfor %}
			</div>
			<div id="action">
				<a class="button" href="/admin">Cancel</a>
				<a class="button delete" href="?confirm">Confirm &amp; delete</a>
			</div>
		</div>
	</body>
</html>