2026-03-11 00:58:24 -04:00
|
|
|
<section
|
|
|
|
|
class="wallet-tokens"
|
|
|
|
|
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
|
|
|
|
>
|
2026-03-11 14:50:08 -04:00
|
|
|
<h2>Tokens</h2>
|
|
|
|
|
<div class="token-row">
|
2026-03-11 00:58:24 -04:00
|
|
|
{% if coin %}
|
|
|
|
|
<div id="id_coin_on_a_string" class="token">
|
|
|
|
|
<i class="fa-solid fa-clover"></i>
|
|
|
|
|
<div class="token-tooltip">
|
|
|
|
|
<h4>{{ coin.tooltip_name }}</h4>
|
|
|
|
|
<p>{{ coin.tooltip_description }}</p>
|
|
|
|
|
{% if coin.tooltip_shoptalk %}
|
|
|
|
|
<small><em>{{ coin.tooltip_shoptalk }}</em></small>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<p class="expiry">{{ coin.tooltip_expiry }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% for token in free_tokens %}
|
|
|
|
|
<div id="id_free_token_{{ forloop.counter0 }}" class="token">
|
|
|
|
|
<i class="fa-solid fa-coins"></i>
|
|
|
|
|
<div class="token-tooltip">
|
|
|
|
|
<h4>{{ token.tooltip_name }}</h4>
|
|
|
|
|
<p>{{ token.tooltip_description }}</p>
|
|
|
|
|
{% if token.tooltip_shoptalk %}
|
|
|
|
|
<small><em>{{ token.tooltip_shoptalk }}</em></small>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<p class="expiry">{{ token.tooltip_expiry }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% for token in tithe_tokens %}
|
|
|
|
|
<div id="id_tithe_token_{{ forloop.counter0 }}" class="token">
|
|
|
|
|
<i class="fa-solid fa-piggy-bank"></i>
|
|
|
|
|
<div class="token-tooltip">
|
|
|
|
|
<h4>{{ token.tooltip_name }}</h4>
|
|
|
|
|
<p>{{ token.tooltip_description }}</p>
|
|
|
|
|
{% if token.tooltip_shoptalk %}
|
|
|
|
|
<small><em>{{ token.tooltip_shoptalk }}</em></small>
|
|
|
|
|
{% endif %}
|
|
|
|
|
<p class="expiry">{{ token.tooltip_expiry }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% empty %}
|
|
|
|
|
<div id="id_tithe_token_empty" class="token token--empty">
|
|
|
|
|
<i class="fa-solid fa-piggy-bank"></i>
|
|
|
|
|
<div class="token-tooltip">
|
|
|
|
|
<h4>Tithe Token</h4>
|
|
|
|
|
<p>0 owned</p>
|
|
|
|
|
<p class="expiry">purchase one above</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
2026-03-11 14:50:08 -04:00
|
|
|
</div>
|
2026-03-11 00:58:24 -04:00
|
|
|
</section>
|