rDrama/files/templates/hats.html

90 lines
3.8 KiB
HTML
Raw Normal View History

{% extends "default.html" %}
2022-11-19 22:20:38 +00:00
{% block pagetitle %}Hats{% endblock %}
{% block pagetype %}message{% endblock %}
[DO NOT MERGE] titlesssssssssss (#468) * titles * testing * self * Revert "self" This reverts commit d6c12d5a5ba125feb44673f55e1fdac75f151cb5. * Revert "testing" This reverts commit 86d800f9fd552196b31f0e0b3891d4fc072a9bc0. * testing on devrama * rewrite the html head * reference error or smth idk * tempalte debug * template debug redux * default2 * rename default2 -> root, page title * fix settings2 * include the set_variables block * root scope variables 2 * test 3 * remove unnecessary set * add pagetitles to all settings2 pages * add pagetitle to casino * remove bloat * remove duplicate site name thingy * page titles 2 * page titles 3 * remove duplicate imports and add page titles everywhere iirc * ok but actually this time * remove unnecessary newlines * fix title lol * > * fsdfsfsfsfsfs * fsfs * template configurations * fix 500 * reduce login template bloat * move files and add status codes where needful * move authfroms to login * remove 2fa bloat * verification code * sign up fixes * readability * fssfsfsfs * move forgot password to login/ * readability * don't emit comments * add page titles where needful * gsgsgs * modals: move to respective pages * testing on devrama * get home garbage out of title * remove insane amount of icon duplication * sign up text * add votes pagetitle * fix blank lines * Revert "fix blank lines" This reverts commit b2c54339970725d00b6fc82bb458c1757909952c. * Fix blank lines on sign_up.html. * title: votes.html more meaningful identifier. * titles: Lottery, Directory, Notifications * head final in submission.html * fix missing comma * > * test * title: /comments * fsfsfsfsf * titles: user_cards * head: only load video and audio meta attributes if they actually exist * titlessssss: /admin/lottery/participants * titlessssssss: extra quote in search.html * titlessssss: userpage voters. * titties: /h/<sub>/{followers,blockers,exilees[sic]} * test banner * Revert "test banner" This reverts commit c3d875d03f3e60d72a60dab7d28bf108554a5826. * make submit.html inherit from default.html Co-authored-by: TLSM <duolsm@outlook.com>
2022-11-21 08:52:22 +00:00
{% block banner %}
2022-09-19 18:30:54 +00:00
<div class="container-fluid bg-white sticky shop-tabs" style="padding-bottom: 0 !important;">
2022-09-18 17:12:28 +00:00
<div class="row box-shadow-bottom">
2022-09-19 18:30:54 +00:00
<div class="col p-0">
2022-09-18 17:12:28 +00:00
<div class="container" style="padding-bottom: 0;">
<div class="row box-shadow-bottom bg-white" style="justify-content: center;">
<a class="btn btn-primary btn-block m-0 shop-tab" href="/shop/awards">
2022-09-18 17:12:28 +00:00
<span class="mr-auto ml-auto"><i class="fas fa-gift mr-2"></i>AWARDS</span>
</a>
<a class="btn btn-primary btn-block m-0 shop-tab active" href="/shop/hats">
2022-09-18 17:12:28 +00:00
<span class="mr-auto ml-auto"><i class="fas fa-hat-cowboy mr-2"></i>HATS</span>
</a>
</div>
</div>
</div>
</div>
</div>
2022-09-03 01:11:10 +00:00
<header class="container pb-1 text-center">
2023-04-25 16:12:40 +00:00
<img loading="lazy" id="hats-banner" class="mt-5" alt="hats banner" src="{{SITE_FULL_IMAGES}}/i/hats.webp?x=2" 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-10 06:43:38 +00:00
<h5 class="mt-4">Coins you spent on hats: {{"{:,}".format(v.coins_spent_on_hats)}}</h5>
<h5 class="mt-4">Total hat sales: {{"{:,}".format(sales)}}</h5>
2022-09-08 18:36:43 +00:00
<h5 class="mt-4">Number of hats: {{num_of_hats}}</h5>
2022-09-03 01:11:10 +00:00
</header>
{% endblock %}
{% block content %}
<script defer src="{{'js/hats.js' | asset}}"></script>
<div class="overflow-x-auto mt-1 mb-5">
<table class="table table-striped shop">
<thead class="bg-primary text-white">
<tr>
<th class="disable-sort-click">Hat</th>
<th>Name</th>
<th>Description</th>
2022-11-11 13:52:18 +00:00
{% if SITE == 'rdrama.net' %}
2022-12-10 10:40:34 +00:00
<th>Author</a></th>
{% endif %}
2022-12-10 10:40:34 +00:00
<th>Owners</th>
<th>Price</th>
<th class="disable-sort-click">Actions</th>
2023-01-01 11:36:20 +00:00
<th>Added on</th>
</tr>
</thead>
2022-09-03 22:07:59 +00:00
<tbody>
2022-09-03 19:11:02 +00:00
{% for hat, user in hats %}
<tr>
2022-09-06 01:47:14 +00:00
<td>
2022-09-06 07:03:14 +00:00
<div class="profile-pic-75-wrapper mt-4">
2022-10-29 21:42:30 +00:00
<img loading="lazy" alt="avatar" src="{{v.profile_url}}" class="profile-pic-75">
2023-04-25 16:12:40 +00:00
<img loading="lazy" alt="{{hat.name}}" class="profile-pic-75-hat" src="{{SITE_FULL_IMAGES}}/i/hats/{{hat.name}}.webp?x=2">
2022-09-06 01:47:14 +00:00
</div>
</td>
<td>{{hat.name}}</td>
2022-09-03 22:07:59 +00:00
<td style="word-break:break-word">{{hat.censored_description(v)}}</td>
2022-11-11 13:52:18 +00:00
{% if SITE == 'rdrama.net' %}
2022-09-05 03:01:06 +00:00
<td>{% include "user_in_table.html" %}</td>
{% endif %}
2023-03-16 06:27:58 +00:00
<td><a href="/hat_owners/{{hat.id}}">{{hat.number_sold(g.db)}}</a></td>
<td>{{hat.price}}</td>
2022-09-03 22:07:59 +00:00
<td class="shop-table-actions" style="width:unset">
2022-11-01 03:37:52 +00:00
{% if hat.id not in owned_hat_ids and hat.is_purchasable %}
2022-09-03 19:11:02 +00:00
<div id="if-not-owned-{{hat.id}}">
<button type="button" id="buy-{{hat.id}}" class="btn btn-success {% if v.coins+v.marseybux < hat.price %}disabled{% endif %}" data-areyousure="postToastSwitch(this, '/buy_hat/{{hat.id}}', 'if-not-owned-{{hat.id}}', 'if-owned-{{hat.id}}', 'd-none')" data-nonce="{{g.nonce}}" data-onclick="areyousure(this)"><span class="m-auto">Buy</span></button>
2022-09-03 19:11:02 +00:00
</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 %}>
2022-12-30 12:14:18 +00:00
<button type="button" id="unequip-{{hat.id}}" class="unequip {% if hat.id not in v.equipped_hat_ids %}d-none{% endif %} btn btn-success" data-nonce="{{g.nonce}}" data-onclick="postToastSwitch(this, '/unequip_hat/{{hat.id}}', 'equip-{{hat.id}}', 'unequip-{{hat.id}}', 'd-none')"><span class="m-auto">Unequip</span></button>
2023-01-01 11:36:20 +00:00
2022-12-30 12:14:18 +00:00
<button type="button" id="equip-{{hat.id}}" class="equip {% if hat.id in v.equipped_hat_ids %}d-none{% endif %} btn btn-success" data-nonce="{{g.nonce}}" data-onclick="equip_hat(this, '{{hat.id}}', '{{hat.name}}')"><span class="m-auto">Equip</span></button>
2022-09-03 19:11:02 +00:00
</div>
</td>
2022-09-18 17:18:44 +00:00
<td data-time="{{hat.created_utc}}"></td>
</tr>
{% endfor %}
</tbody>
</table>
2023-01-01 11:36:20 +00:00
2022-09-03 22:07:59 +00:00
{% endblock %}