54 lines
1.2 KiB
HTML
54 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Shared Stash</title>
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<head>
|
|
<body>
|
|
<div class="currencies">
|
|
<div>
|
|
<table>
|
|
{% for code,currency in runes.items() %}
|
|
<tr>
|
|
<th>{{currency.name}}</th>
|
|
<td>{{currency.count}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
<div>
|
|
<table>
|
|
{% for code,currency in gems.items() %}
|
|
<tr>
|
|
<th>{{currency.name}}</th>
|
|
<td>{{currency.count}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
<div>
|
|
<table>
|
|
{% for code,currency in keys.items() %}
|
|
<tr>
|
|
<th>{{currency.name}}</th>
|
|
<td>{{currency.count}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
<div>
|
|
<table>
|
|
{% for code,currency in essences.items() %}
|
|
<tr>
|
|
<th>{{currency.name}}</th>
|
|
<td>{{currency.count}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|