pluto/core/templates/partials/linkgroup-info-sim.html

26 lines
787 B
HTML
Raw Normal View History

<h1 class="title">Simulation with live data</h1>
<p>Total profit: {{ total_profit }}</p>
<div class="columns">
<div class="column">
<div class="content">
<ul>
{% for wallet, list in pay_list.items %}
<li>{{ wallet.name }} to <code>{{ wallet.address }}</code>: </li>
<ul>
{% for amount, item in list %}
<li>{{ amount }} for {{ item }}</li>
{% endfor %}
</ul>
{% endfor %}
</ul>
</div>
<h1 class="title is-4">Total for wallets</h1>
<div class="box">
{% for wallet, amount in collapsed.items %}
{{ wallet }}: ${{ amount }}
<progress class="progress" value="{{ amount }}" max="{{ total_profit }}"></progress>
{% endfor %}
</div>
</div>
</div>