only show txes if amount is gt 0

pull/2/head
lza_menace 3 years ago
parent 200aaa066c
commit e14131d4e2

@ -31,7 +31,9 @@
{% if transfers.in %}
<ul>
{% for transfer in transfers.in %}
<li style="word-break:break-all;list-style:none;">{{ transfer.amount / 100000000000 }} WOW (<a href="https://wownero.club/transaction/{{ transfer.txid }}" target="_blank">{{ transfer.txid }}</a>)</li>
{% if transfer.amount > 0 %}
<li style="word-break:break-all;list-style:none;">{{ transfer.amount / 100000000000 }} WOW (<a href="https://wownero.club/transaction/{{ transfer.txid }}" target="_blank">{{ transfer.txid }}</a>)</li>
{% endif %}
{% endfor %}
</ul>
{% else %}