rDrama/files/templates/CHRISTMAS/dropdowns/ProfileDropdown.html

56 lines
1.8 KiB
HTML
Raw Normal View History

2021-12-09 03:45:02 +00:00
<div class="dropdown">
2021-12-10 05:48:26 +00:00
<button class="btn btn-gray" type="button" id="dropdownProfile-Actions" data-bs-toggle="dropdown" aria-expanded="false" data-bs-auto-close="outside">
2021-12-09 03:46:45 +00:00
<i class="fas fa-ellipsis-h fa-fw fa-sm"></i>
2021-12-09 03:45:02 +00:00
</button>
<ul class="dropdown-menu w-56 bg-gray-900 rounded-md shadow-lg" aria-labelledby="dropdownProfile-Actions">
2021-12-09 16:15:11 +00:00
<li>
2021-12-20 03:52:23 +00:00
<a class="dropdown-item dropdown-item-primary" href="/@{{ u.username }}/upvoters">
2021-12-09 16:53:44 +00:00
<i class="fas fa-kiss-wink-heart fa-sm fa-fw mr-4"></i>
2021-12-09 16:15:11 +00:00
Simps
</a>
</li>
<li>
2021-12-20 03:52:23 +00:00
<a class="dropdown-item dropdown-item-primary" href="/@{{ u.username }}/downvoters">
2021-12-09 16:53:44 +00:00
<i class="fas fa-tired fa-sm fa-fw mr-4"></i>
2021-12-09 16:15:11 +00:00
Haters
</a>
</li>
<li>
2021-12-20 03:52:23 +00:00
<a class="dropdown-item dropdown-item-primary" href="/@{{ u.username }}/upvoting">
2021-12-09 16:53:44 +00:00
<i class="fas fa-grin-hearts fa-sm fa-fw mr-4"></i>
2021-12-09 16:15:11 +00:00
Simps for
</a>
</li>
<li>
2021-12-20 03:52:23 +00:00
<a class="dropdown-item dropdown-item-primary" href="/@{{ u.username }}/downvoting">
2021-12-09 16:53:44 +00:00
<i class="fas fa-angry fa-sm fa-fw mr-4"></i>
2021-12-09 16:15:11 +00:00
Hates
</a>
</li>
2021-12-16 03:56:02 +00:00
{% if v and v.id == u.id %}
<li>
2021-12-20 03:52:23 +00:00
<a class="dropdown-item dropdown-item-primary" href="/views">
2021-12-16 03:56:02 +00:00
<i class="fas fa-binoculars fa-sm fa-fw mr-4"></i>
Profile views
</a>
</li>
{% endif %}
2021-12-09 16:15:11 +00:00
{% if v and v.id != u.id %}
2021-12-09 16:53:44 +00:00
<li>
<hr class="mt-2 mb-1.5 border-t border-black h-1 shadow-inset-t-white-05"/>
</li>
2021-12-09 03:45:02 +00:00
<li>
2021-12-20 03:52:23 +00:00
<button class="dropdown-item dropdown-item-primary" onclick="post_toast('/@{{u.username}}/suicide')">
2021-12-09 03:46:26 +00:00
<i class="fas fa-briefcase-medical fa-sm fa-fw mr-4"></i>
2021-12-09 03:45:02 +00:00
Get them help
</button>
</li>
2021-12-09 03:45:41 +00:00
<li>
2021-12-20 03:52:23 +00:00
<button class="dropdown-item dropdown-item-primary" data-bs-toggle="modal" data-bs-target="#giftCoinsModal">
2021-12-09 03:45:02 +00:00
<i class="fas fa-gift fa-sm fa-fw mr-4"></i>
Gift {{'COINS_NAME' | app_config}}
</button>
</li>
2021-12-09 16:15:11 +00:00
{% endif %}
2021-12-09 03:45:02 +00:00
</ul>
</div>