forked from omicron/d2warehouse
Add the missing currency template for the currency ui (oops)
This commit is contained in:
53
d2warehouse/app/templates/currency.html
Normal file
53
d2warehouse/app/templates/currency.html
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<!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>
|
||||||
|
|
||||||
Reference in New Issue
Block a user