Arc
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
lnbits/templates/wallet.html
|
|
@ -76,7 +76,7 @@ |
|
|
|
<!-- small box --> |
|
|
|
<div class="small-box bg-aqua"> |
|
|
|
<div class="inner"> |
|
|
|
<h3><b>{{ wallet.balance }} sats</b></h3> |
|
|
|
<h3><b id="walletsats"></b></h3> |
|
|
|
<h3>{{ wallet.name }}</h3> |
|
|
|
</div> |
|
|
|
<div class="icon"> |
|
|
@ -247,6 +247,8 @@ |
|
|
|
window.user_wallets = {{ user_wallets | megajson | safe }} |
|
|
|
window.wallet = {{ wallet | megajson | safe }} |
|
|
|
window.transactions = {{ transactions | megajson | safe }} |
|
|
|
|
|
|
|
document.getElementById("walletsats").innerHTML = Math.round({{ wallet.balance }}) + " sats"; |
|
|
|
</script> |
|
|
|
</div> |
|
|
|
{% endblock %} |
|
|
|