add user balance / boost address info

This commit is contained in:
ghost 2024-02-18 02:53:19 +02:00
parent 9d9cd852ad
commit 4c7fc2f910
2 changed files with 20 additions and 15 deletions

View File

@ -100,6 +100,12 @@ class UserController extends AbstractController
$list[] =
[
'name' => $user['key'],
'balance' => $client->getBalance(
$user['key']
),
'address' => $client->getAccountAddress(
$user['key']
),
'total' => $total,
'rooms' => $rooms,
];

View File

@ -7,9 +7,9 @@
<li>
<div>
<strong>
@{{ user.name }}
@{{ user.name }} / {{ 'balance' | trans }}: {{ user.balance }} / {{ 'boost' | trans }}: {{ user.address }}
</strong>
<span style="float:right">{# @TODO #}
<br />
{% for namespace, total in user.rooms %}
<a href="{{
path('room_namespace',
@ -19,7 +19,6 @@
}) }}">{{ namespace | keva_namespace_value }}</a>
{{ total }}
{% endfor %}
</span>
</div>
</li>
{% endfor %}