mirror of
https://github.com/kevachat/webapp.git
synced 2025-01-09 22:38:01 +00:00
21 lines
597 B
Twig
21 lines
597 B
Twig
<div>
|
|
{{ 'block:' | trans }} {{ wallet.block }}
|
|
/
|
|
{{ 'balance:' | trans }} {{ wallet.balance }}
|
|
{% if mine.address %}
|
|
/
|
|
{{ 'charge:' | trans }}
|
|
<pre>{{ mine.address }}</pre>
|
|
{% endif %}
|
|
{% if mine.pool %}
|
|
/
|
|
{{ 'mine:' | trans }}
|
|
{% if mine.pool.url %}
|
|
<a href="{{ mine.pool.url }}" target="_blank">{{ 'pool' | trans }}</a>
|
|
{% endif %}
|
|
{% if mine.solo.url %}
|
|
|
|
|
<a href="{{ mine.solo.url }}" target="_blank">{{ 'solo' | trans }}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div> |