remotes/1693045480750635534/spooky-22
Aevann1 2022-03-19 16:10:04 +02:00
parent c2dca97f2c
commit 03cccbae02
1 changed files with 5 additions and 1 deletions

View File

@ -55,11 +55,12 @@
<th scope="col">Price</th>
<th scope="col">Owned</th>
<th scope="col">Buy</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
{% for a in awards %}
<tr data-bs-toggle="tooltip" data-bs-placement="bottom" title="{{a['description']}}">
<tr>
<td><i class="{{a['icon']}} {{a['color']}}" style="font-size: 30px"></i></td>
<td>{{a['title']}}</td>
{% if a['baseprice'] != a['price'] %}
@ -74,6 +75,9 @@
{% if a['kind'] != "benefactor" %}<a class="d-flex btn btn-success {% if v.coins < a['price'] %}disabled{% endif %}" role="button" onclick="post_toast(this,'/buy/{{kind}}')"><span class="m-auto">Buy with coins</span></a>{% endif %}
{% if a['kind'] != "grass" %}<a class="d-flex marseybux btn btn-success {% if v.procoins < a['price'] %}disabled{% endif %}" role="button" onclick="post_toast(this,'/buy/{{kind}}?mb=true')"><span class="m-auto">Buy with marseybux</span></a>{% endif %}
</td>
<td>
{{a['description']}}
</td>
</tr>
{% endfor %}
</table>