99 lines
3.7 KiB
HTML
99 lines
3.7 KiB
HTML
{% extends "default.html" %}
|
|
|
|
{% block pagetitle %}Leaderboard{% endblock %}
|
|
|
|
{% block subHeader %}
|
|
<div class="max-w-screen-2xl mx-auto px-4 py-4 grid grid-cols-12 rounded-t-md bg-gradient-to-t from-gray-800 to-gray-700 sub-header-shadow">
|
|
<div class="col-span-full flex items-center">
|
|
<div>
|
|
<h1 class="font-bold text-xl font-heading leading-normal">
|
|
Leaderboards
|
|
</h1>
|
|
<ul class="mt-1 text-gray-400 text-sm flex items-center space-x-3">
|
|
<li>
|
|
<a class="{% if not '=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications">
|
|
Wealthiest
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="{% if '/notifications?posts=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications?posts=true">
|
|
Spenders
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="{% if '/notifications?messages=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications?messages=true">
|
|
Followers
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="{% if '/notifications?messages=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications?messages=true">
|
|
Posts
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="{% if '/notifications?messages=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications?messages=true">
|
|
Comments
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="{% if '/notifications?messages=true' in request.full_path %}font-bold text-pink-600{% endif %}" href="/notifications?messages=true">
|
|
Awards
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-span-full">
|
|
<div class="flex items-center px-4 py-4 bg-gray-800 sticky top-0">
|
|
<h1 class="text-2xl font-heading font-bold">
|
|
rDrama's 100 Greediest Users
|
|
</h1>
|
|
</div>
|
|
<div class="mb-4 flex flex-col bg-gray-900 rounded-lg overflow-hidden">
|
|
{% for user in users1 %}
|
|
<div class="flex items-center border-b border-gray-900 shadow-inset-t-white-05 odd:bg-gray-700 px-5 py-3 {% if v.username == user.username %}text-pink-900 text-shadow-light bg-pink-600{% elif users1.index(user) % 2 != 0 %}bg-gray-700 bg-opacity-20{% endif %}">
|
|
<!-- Rank -->
|
|
<h2 class="text-2xl font-bold font-heading text-center w-16 -ml-5 {{ 'text-pink-900' if v.username == user.username else 'text-gray-700' }}">
|
|
{{users1.index(user)+1}}
|
|
</h2>
|
|
<div class="relative">
|
|
<img src="{{user.profile_url}}" class="p-1 rounded border w-12 h-12 object-cover shadow-md {{ 'bg-pink-800 border-pink-900' if v.username == user.username else 'bg-white border-gray-900' }}" alt="{{ user.username }} avatar"/>
|
|
{% if users1.index(user)+1 == 1 %}
|
|
<img src="https://i.ibb.co/xFgG6yf/Coinfixed.gif" width="20px" height="12px" class="absolute -top-1 -right-2.5 object-contain"/>
|
|
{% endif %}
|
|
</div>
|
|
<!-- User Details -->
|
|
<div class="ml-3">
|
|
<a class="block font-heading font-bold text-xl" href="/@{{user.username}}">
|
|
{{user.username}}
|
|
</a>
|
|
{% if user.customtitle %}
|
|
<p class="text-sm" style="#{{user.namecolor}}">
|
|
{{user.customtitle | safe}}
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
<div class="ml-auto mr-4">
|
|
<span class="text-xl font-heading font-bold {{ 'text-pink-900' if v.username == user.username else 'text-gray-300' }}">
|
|
{{user.coins}}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<!-- user7 {{user.coins_spent}} -->
|
|
|
|
<!-- user2 {{user.stored_subscriber_count}} -->
|
|
|
|
<!-- user3 {{user.post_count}} -->
|
|
|
|
<!-- user4 {{user.comment_count}} -->
|
|
|
|
<!-- user5 {{user.received_award_count}} --> |