2022-12-19 20:55:52 +00:00
|
|
|
{% if user %}
|
2024-04-18 20:31:52 +00:00
|
|
|
{% if not can_see(v, user) and request.path != '/shop/hats' and not request.path.startswith('/emojis/') %}
|
2024-04-18 22:19:09 +00:00
|
|
|
<hideme></hideme>
|
2024-04-18 20:31:52 +00:00
|
|
|
{% else %}
|
2023-11-03 20:00:22 +00:00
|
|
|
{%- include 'admin/shadowbanned_tooltip.html' -%}
|
2024-02-28 21:11:03 +00:00
|
|
|
<a {% if not user.earlylife %}class="unbreakable"{% endif %} data-sort="{{user.username.lower()}}" style="color:#{{user.name_color}};font-weight:bold" href="/@{{user.username}}">
|
2023-10-27 11:13:07 +00:00
|
|
|
<div class="profile-pic-20-wrapper mb-2">
|
|
|
|
<img loading="lazy" src="{{user.profile_url}}" class="pp20">
|
|
|
|
{% if user.hat_active(v)[0] -%}
|
2024-03-05 18:40:55 +00:00
|
|
|
<img class="profile-pic-20-hat hat" loading="lazy" src="{{user.hat_active(v)[0]}}?x=8" data-bs-toggle="tooltip" data-bs-placement="bottom" title="{{user.hat_active(v)[1]}}">
|
2023-10-27 11:13:07 +00:00
|
|
|
{%- endif %}
|
|
|
|
</div>
|
2024-04-20 17:20:00 +00:00
|
|
|
<span {% if user.earlylife %}style="word-break:break-word!important"{% endif %} {% if user.patron %}class="patron" style="background-color:#{{user.name_color}}"{% endif %} {% if user.pride_username(v) %}pride_username{% endif %}>{{user.user_name}}</span>
|
2023-10-27 11:13:07 +00:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
2022-12-19 20:55:52 +00:00
|
|
|
{% endif %}
|