rDrama/files/templates/hats.html

100 lines
4.3 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 %}
2023-09-15 11:01:04 +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">
2023-09-15 11:01:04 +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>
2023-05-03 17:26:44 +00:00
<header id="shop-header" class="container text-center pb-0">
2024-03-05 18:40:55 +00:00
<img id="shop-banner" class="mt-5" alt="shop banner" src="{{SITE_FULL_IMAGES}}/i/hats.webp?x=8">
2023-05-03 17:26:44 +00:00
<ul id="shop-stats" class="my-1 my-md-2">
<li class="mt-2">Number of hats you bought: {{v.num_of_owned_hats}}</li>
<li>Number of hats you designed: {{v.num_of_designed_hats}}</li>
<li>Number of hats: {{num_of_hats}}</li>
2024-03-09 11:39:13 +00:00
<li>Currency you spent on hats: {{v.currency_spent_on_hats|commas}}</li>
<li>Total currency spent on hats: {{sales|commas}}</li>
<li>Your current coins: {{v.coins|commas}}</li>
2023-05-03 17:26:44 +00:00
{% if FEATURES['MARSEYBUX'] %}
2024-03-09 11:39:13 +00:00
<li>Your current marseybux: {{v.marseybux|commas}}</li>
2023-05-03 17:26:44 +00:00
{% endif %}
</ul>
2022-09-03 01:11:10 +00:00
</header>
{% endblock %}
{% block content %}
<script defer src="{{'js/hats.js' | asset}}"></script>
2023-05-03 17:26:44 +00:00
<div class="overflow-x-auto mt-3 mb-5">
2024-02-12 14:21:51 +00:00
<table class="datatable d-none shop">
<thead>
<tr>
2024-02-02 18:12:32 +00:00
<th class="disable-sort-click">Hat</th>
2024-04-06 06:24:16 +00:00
<th class="disable-sort-click">Name</th>
<th class="disable-sort-click">Description</th>
2022-11-11 13:52:18 +00:00
{% if SITE == 'rdrama.net' %}
2024-04-06 06:24:16 +00:00
<th class="disable-sort-click">Author</a></th>
{% endif %}
2024-04-06 06:24:16 +00:00
<th class="disable-sort-click">Owners</th>
<th class="disable-sort-click">Price</th>
2024-02-02 18:12:32 +00:00
<th class="disable-sort-click">Actions</th>
2024-04-06 06:24:16 +00:00
<th class="disable-sort-click">Added on</th>
2024-02-02 18:12:32 +00:00
</tr>
</thead>
<tbody>
{% for hat, user in hats %}
<tr>
<td>
<div class="profile-pic-75-wrapper mt-4">
<img loading="lazy" alt="avatar" src="{{v.profile_url}}" class="profile-pic-75">
2024-03-05 18:40:55 +00:00
<img loading="lazy" alt="{{hat.name}}" class="profile-pic-75-hat" src="{{SITE_FULL_IMAGES}}/i/hats/{{hat.name}}.webp?x=8">
2022-09-03 19:11:02 +00:00
</div>
2024-02-02 18:12:32 +00:00
</td>
<td>{{hat.name}}</td>
<td>{{hat.censored_description(v)}}</td>
{% if SITE == 'rdrama.net' %}
<td>{% include "user_in_table.html" %}</td>
{% endif %}
2024-02-02 18:12:32 +00:00
<td><a href="/hat_owners/{{hat.id}}">{{hat.number_sold}}</a></td>
<td>{{hat.price}}</td>
<td class="shop-table-actions" style="width:unset">
{% if hat.id not in owned_hat_ids and hat.is_purchasable %}
<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)">Buy</button>
</div>
{% endif %}
2022-09-03 19:11:02 +00:00
2024-02-02 18:12:32 +00:00
<div id="if-owned-{{hat.id}}" {% if hat.id not in owned_hat_ids %}class="d-none"{% endif %}>
<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}}')">Equip</button>
2023-09-07 08:41:39 +00:00
2024-02-02 18:12:32 +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')">Unequip</button>
</div>
</td>
2022-09-18 17:18:44 +00:00
<td data-sort="{{hat.created_utc}}" data-time="{{hat.created_utc}}"></td>
2024-02-02 18:12:32 +00:00
</tr>
{% endfor %}
</tbody>
</table>
</div>
2023-01-01 11:36:20 +00:00
2024-02-01 18:24:22 +00:00
<link rel="stylesheet" href="{{('css/datatables.css') | asset}}">
<script defer src="{{'js/vendor/jquery.js' | asset}}"></script>
<script defer src="{{'js/vendor/datatables.js' | asset}}"></script>
2023-05-05 03:13:17 +00:00
{% endblock %}