Browse Source

update balance info position

main
ghost 5 months ago
parent
commit
d8901e921d
  1. 7
      templates/default/user/list.html.twig

7
templates/default/user/list.html.twig

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

Loading…
Cancel
Save