Make currency in withdrawal simulation clear

master
Mark Veidemanis 1 year ago
parent 1a0f22740b
commit 390132fb10
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -1,5 +1,5 @@
<h1 class="title">Simulation with live data</h1>
<p>Total profit: {{ total_profit }}</p>
<p>Total profit (XMR): {{ total_profit }}</p>
<div class="columns">
<div class="column">
<div class="content">
@ -14,10 +14,10 @@
{% endfor %}
</ul>
</div>
<h1 class="title is-4">Total for wallets</h1>
<h1 class="title is-4">Total for wallets (XMR)</h1>
<div class="box">
{% for wallet, amount in collapsed.items %}
{{ wallet }}: ${{ amount }}
{{ wallet }}: {{ amount }}
<progress class="progress" value="{{ amount }}" max="{{ total_profit }}"></progress>
{% endfor %}
</div>

Loading…
Cancel
Save