2014-05-22 19:49:19 -04:00
|
|
|
<!DOCTYPE html>
|
2014-05-22 19:38:14 -04:00
|
|
|
<html>
|
2016-04-12 15:59:49 -07:00
|
|
|
<head>
|
2014-08-27 13:51:39 -07:00
|
|
|
<title>OnionShare</title>
|
2018-03-06 03:03:24 -08:00
|
|
|
<link href="/static/img/favicon.ico" rel="icon" type="image/x-icon" />
|
|
|
|
<link href="/static/css/style.css" rel="stylesheet" type="text/css" />
|
2014-08-27 13:51:39 -07:00
|
|
|
<meta name="onionshare-filename" content="{{ filename }}">
|
|
|
|
<meta name="onionshare-filesize" content="{{ filesize }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-02-10 16:19:23 -08:00
|
|
|
|
|
|
|
<header class="clearfix">
|
|
|
|
<div class="right">
|
|
|
|
<ul>
|
|
|
|
<li>Total size: <strong>{{ filesize_human }}</strong> (compressed)</li>
|
|
|
|
<li><a class="button" href='/{{ slug }}/download'>Download Files</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2018-03-06 03:03:24 -08:00
|
|
|
<img class="logo" src="/static/img/logo.png" title="OnionShare">
|
2018-02-10 16:19:23 -08:00
|
|
|
<h1>OnionShare</h1>
|
|
|
|
</header>
|
|
|
|
|
2018-02-14 16:56:03 +11:00
|
|
|
<table class="file-list" id="file-list">
|
2017-05-19 15:44:03 +10:00
|
|
|
<tr>
|
2018-03-06 03:17:54 -08:00
|
|
|
<th id="filename-header">Filename</th>
|
|
|
|
<th id="size-header">Size</th>
|
2018-02-10 16:19:23 -08:00
|
|
|
<th></th>
|
2017-05-19 15:44:03 +10:00
|
|
|
</tr>
|
2014-08-27 13:51:39 -07:00
|
|
|
{% for info in file_info.dirs %}
|
|
|
|
<tr>
|
2018-02-10 16:19:23 -08:00
|
|
|
<td>
|
2018-03-06 03:03:24 -08:00
|
|
|
<img width="30" height="30" title="" alt="" src="/static/img/web_folder.png" />
|
2018-02-10 16:19:23 -08:00
|
|
|
{{ info.basename }}
|
|
|
|
</td>
|
2014-08-27 13:51:39 -07:00
|
|
|
<td>{{ info.size_human }}</td>
|
2018-02-10 16:19:23 -08:00
|
|
|
<td></td>
|
2014-08-27 13:51:39 -07:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% for info in file_info.files %}
|
|
|
|
<tr>
|
2018-02-10 16:19:23 -08:00
|
|
|
<td>
|
2018-03-06 03:03:24 -08:00
|
|
|
<img width="30" height="30" title="" alt="" src="/static/img/web_file.png" />
|
2018-02-10 16:19:23 -08:00
|
|
|
{{ info.basename }}
|
|
|
|
</td>
|
2014-08-27 13:51:39 -07:00
|
|
|
<td>{{ info.size_human }}</td>
|
2018-02-10 16:19:23 -08:00
|
|
|
<td></td>
|
2014-08-27 13:51:39 -07:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2014-10-26 14:16:53 +01:00
|
|
|
</table>
|
2018-03-06 03:17:54 -08:00
|
|
|
<script src="/static/js/send.js"></script>
|
2014-08-27 13:51:39 -07:00
|
|
|
</body>
|
2014-05-22 19:38:14 -04:00
|
|
|
</html>
|