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-15 01:17:09 -04:00
|
|
|
|
{% if pass_token %}
|
|
|
|
|
|
<div id="id_pass_token" class="token">
|
|
|
|
|
|
<i class="fa-solid fa-clipboard"></i>
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<div class="tt">
|
|
|
|
|
|
<h4 class="tt-title">{{ pass_token.tooltip_name }}</h4>
|
|
|
|
|
|
<p class="tt-description">{{ pass_token.tooltip_description }}</p>
|
2026-03-16 00:07:52 -04:00
|
|
|
|
{% if pass_token.tooltip_shoptalk %}
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<p class="tt-shoptalk"><em>{{ pass_token.tooltip_shoptalk }}</em></p>
|
2026-03-16 00:07:52 -04:00
|
|
|
|
{% endif %}
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<p class="tt-expiry">{{ pass_token.tooltip_expiry }}</p>
|
2026-03-15 01:17:09 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% elif coin %}
|
2026-03-11 00:58:24 -04:00
|
|
|
|
<div id="id_coin_on_a_string" class="token">
|
2026-03-15 01:17:09 -04:00
|
|
|
|
<i class="fa-solid fa-medal"></i>
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<div class="tt">
|
|
|
|
|
|
<h4 class="tt-title">{{ coin.tooltip_name }}</h4>
|
|
|
|
|
|
<p class="tt-description">{{ coin.tooltip_description }}</p>
|
2026-03-11 00:58:24 -04:00
|
|
|
|
{% if coin.tooltip_shoptalk %}
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<p class="tt-shoptalk"><em>{{ coin.tooltip_shoptalk }}</em></p>
|
2026-03-11 00:58:24 -04:00
|
|
|
|
{% endif %}
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<p class="tt-expiry">{{ coin.tooltip_expiry }}</p>
|
2026-03-11 00:58:24 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endif %}
|
2026-03-15 16:08:34 -04:00
|
|
|
|
{% if free_tokens %}
|
|
|
|
|
|
{% with free_tokens.0 as token %}
|
|
|
|
|
|
<div id="id_free_token" class="token">
|
2026-03-11 00:58:24 -04:00
|
|
|
|
<i class="fa-solid fa-coins"></i>
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<div class="tt">
|
|
|
|
|
|
<h4 class="tt-title">{{ token.tooltip_name }}{% if free_count > 1 %} <span class="token-count">(×{{ free_count }})</span>{% endif %}</h4>
|
|
|
|
|
|
<p class="tt-description">{{ token.tooltip_description }}</p>
|
2026-03-16 00:07:52 -04:00
|
|
|
|
{% if token.tooltip_shoptalk %}
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<p class="tt-shoptalk"><em>{{ token.tooltip_shoptalk }}</em></p>
|
2026-03-16 00:07:52 -04:00
|
|
|
|
{% endif %}
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<p class="tt-expiry">{{ token.tooltip_expiry }}</p>
|
2026-03-11 00:58:24 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-03-15 16:08:34 -04:00
|
|
|
|
{% endwith %}
|
|
|
|
|
|
{% else %}
|
2026-03-14 22:00:16 -04:00
|
|
|
|
<div id="id_free_token_empty" class="token token--empty">
|
|
|
|
|
|
<i class="fa-solid fa-coins"></i>
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<div class="tt">
|
|
|
|
|
|
<h4 class="tt-title">Free Token</h4>
|
|
|
|
|
|
<p class="tt-description">0 owned</p>
|
|
|
|
|
|
<p class="tt-expiry">find one around</p>
|
2026-03-14 22:00:16 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-03-15 16:08:34 -04:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% if tithe_tokens %}
|
|
|
|
|
|
{% with tithe_tokens.0 as token %}
|
|
|
|
|
|
<div id="id_tithe_token" class="token">
|
2026-03-11 00:58:24 -04:00
|
|
|
|
<i class="fa-solid fa-piggy-bank"></i>
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<div class="tt">
|
|
|
|
|
|
<h4 class="tt-title">{{ token.tooltip_name }}{% if tithe_count > 1 %} <span class="token-count">(×{{ tithe_count }})</span>{% endif %}</h4>
|
|
|
|
|
|
<p class="tt-description">{{ token.tooltip_description }}</p>
|
|
|
|
|
|
<p class="tt-expiry">{{ token.tooltip_expiry }}</p>
|
2026-03-11 00:58:24 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-03-15 16:08:34 -04:00
|
|
|
|
{% endwith %}
|
|
|
|
|
|
{% else %}
|
2026-03-11 00:58:24 -04:00
|
|
|
|
<div id="id_tithe_token_empty" class="token token--empty">
|
|
|
|
|
|
<i class="fa-solid fa-piggy-bank"></i>
|
2026-04-15 22:42:37 -04:00
|
|
|
|
<div class="tt">
|
|
|
|
|
|
<h4 class="tt-title">Tithe Token</h4>
|
|
|
|
|
|
<p class="tt-description">0 owned</p>
|
|
|
|
|
|
<p class="tt-expiry">purchase one above</p>
|
2026-03-11 00:58:24 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-03-15 16:08:34 -04:00
|
|
|
|
{% endif %}
|
2026-03-11 14:50:08 -04:00
|
|
|
|
</div>
|
2026-03-11 00:58:24 -04:00
|
|
|
|
</section>
|