mirror of
https://git.wownero.com/lza_menace/suchwow.git
synced 2024-08-15 01:03:19 +00:00
only show txes if amount is gt 0
This commit is contained in:
parent
200aaa066c
commit
e14131d4e2
1 changed files with 3 additions and 1 deletions
|
@ -31,7 +31,9 @@
|
|||
{% if transfers.in %}
|
||||
<ul>
|
||||
{% for transfer in transfers.in %}
|
||||
{% 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 %}
|
||||
|
|
Loading…
Reference in a new issue