rDrama/files/templates/hats.html

86 lines
3.7 KiB
HTML
Raw Normal View History

{% extends "default.html" %}
{% block title %}
<title>Hats</title>
{% endblock %}
{% block pagetype %}message{% endblock %}
2022-09-03 01:11:10 +00:00
{% block Banner %}
<header class="container pb-1 text-center">
2022-09-03 02:48:27 +00:00
<img class="mt-5" alt="hats banner" src="/i/hats.webp?v=1" width="50%">
2022-09-03 18:50:20 +00:00
<h5 class="mt-4">Number of hats you bought: {{v.num_of_owned_hats}}</h5>
<h5 class="mt-4">Number of hats you designed: {{v.num_of_designed_hats}}</h5>
2022-09-03 01:11:10 +00:00
<h5 class="mt-4">Coins you spent on hats: {{v.coins_spent_on_hats}}</h5>
</header>
{% endblock %}
{% block content %}
<pre>
</pre>
<div class="overflow-x-auto"><table class="table table-striped shop">
<thead class="bg-primary text-white">
<tr>
<th scope="col">Hat</th>
<th scope="col">Name</th>
<th scope="col">Description</th>
{% if SITE == 'rdrama.net' %}
<th scope="col">Author</th>
2022-09-03 03:04:51 +00:00
<th scope="col" onclick="sort_table(4)">Number Sold</th>
<th scope="col" onclick="sort_table(5)">Price</th>
{% else %}
<th scope="col" onclick="sort_table(3)">Number Sold</th>
<th scope="col" onclick="sort_table(4)">Price</th>
{% endif %}
<th scope="col">Actions</th>
</tr>
</thead>
<tbody>
2022-09-03 19:11:02 +00:00
{% for hat, user in hats %}
<tr>
2022-09-03 02:48:27 +00:00
<td><img loading="lazy" alt="{{hat.name}}" src="/i/hats/{{hat.name}}.webp?v=1"></td>
<td>{{hat.name}}</td>
2022-09-03 18:55:03 +00:00
<td>{{hat.censored_description(v)}}</td>
{% if SITE == 'rdrama.net' %}
<td><a style="color:#{{user.name_color}}" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.name_color}}"{% endif %}>{{user.username}}</span></a></td>
{% endif %}
2022-09-03 03:04:51 +00:00
<td>{{hat.number_sold}}</td>
<td>{{hat.price}}</td>
<td class="shop-table-actions">
2022-09-03 19:11:02 +00:00
{% if hat.id not in owned_hat_ids %}
<div id="if-not-owned-{{hat.id}}">
<a id="buy1-{{hat.id}}" class="btn btn-success {% if v.coins < hat.price %}disabled{% endif %}" role="button" onclick="this.classList.add('d-none');document.getElementById('buy1-go-{{hat.id}}').classList.remove('d-none')"><span class="m-auto">Buy</span></a>
2022-09-03 19:11:02 +00:00
<a id="buy1-go-{{hat.id}}" class="d-none btn btn-success {% if v.coins < hat.price %}disabled{% endif %}" role="button" onclick="post_toast(this, '/buy_hat/{{hat.id}}', 'if-not-owned-{{hat.id}}', 'if-owned-{{hat.id}}', 'd-none')"><span class="m-auto">Are you sure?</span></a>
2022-09-03 19:11:02 +00:00
{% if FEATURES['PROCOINS'] %}
<a id="buy2-{{hat.id}}" class="marseybux btn btn-success {% if v.procoins < hat.price %}disabled{% endif %}" role="button" onclick="this.classList.add('d-none');document.getElementById('buy2-go-{{hat.id}}').classList.remove('d-none')"><span class="m-auto">Buy with MBux</span></a>
2022-09-03 19:11:02 +00:00
<a id="buy2-go-{{hat.id}}" class="d-none marseybux btn btn-success {% if v.procoins < hat.price %}disabled{% endif %}" role="button" onclick="post_toast(this, '/buy_hat/{{hat.id}}?mb=true', 'if-not-owned-{{hat.id}}', 'if-owned-{{hat.id}}', 'd-none')"><span class="m-auto">Are you sure?</span></a>
{% endif %}
</div>
{% endif %}
2022-09-03 19:11:02 +00:00
<div id="if-owned-{{hat.id}}" {% if hat.id not in owned_hat_ids %}class="d-none"{% endif %}>
{% if hat.id == v.equipped_hat.id %}
<a class="unequip btn btn-success" role="button" onclick="post_toast(this,'/unequip_hat', true)"><span class="m-auto">Unequip</span></a>
{% else %}
<a class="equip btn btn-success" role="button" onclick="post_toast(this,'/equip_hat/{{hat.id}}', true)"><span class="m-auto">Equip</span></a>
{% endif %}
</div>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<pre>
</pre>
2022-09-03 18:24:26 +00:00
<script src="{{asset('js/sort_table.js')}}"></script>
2022-09-03 03:04:51 +00:00
{% endblock %}