2022-12-09 03:35:28 +00:00
{% import 'userpage/admintools.html' as userpage_admintools with context %}
{% set hats_total = u.hats_owned_proportion_display[1] if u else 0 %}
{% set hats_owned_percent = u.hats_owned_proportion_display[0] if u else '' %}
2022-12-25 05:08:07 +00:00
{% if v and (v.admin_level >= PERMS['VIEW_ALTS'] or v.alt) %}
2023-01-25 02:51:48 +00:00
{% set alts = get_alt_graph(u.id) %}
2022-12-25 05:08:07 +00:00
{% endif %}
2023-05-16 03:41:45 +00:00
{% set ns = namespace() %}
2023-10-26 22:15:15 +00:00
{% set pfp = u.highres if (u.highres and can_see(v, u) and u.profileurl == u.profile_url) else u.profile_url %}
2023-10-26 22:19:31 +00:00
{% set pfp_expanded = u.highres if (u.highres and can_see(v, u)) else u.profile_url %}
2023-05-16 03:41:45 +00:00
2022-12-09 03:35:28 +00:00
{% block desktopUserBanner %}
2023-10-29 12:51:00 +00:00
< div class = "row d-mob-none" >
< div class = "col px-0" >
< div id = "desktopUserBanner" class = "jumbotron jumbotron-fluid jumbotron-guild d-mob-none" { % if FEATURES [ ' USERS_PROFILE_BANNER ' ] % } data-style = "background-image: url({{u.banner_url}})" { % endif % } >
< div class = "jumbotron-overlay" > < / div >
< div class = "w-100 my-3" >
< div class = "container-fluid nobackground" >
< div class = "d-md-flex text-center text-md-left" >
< div id = "profile--pfp" { % if u . hat_active ( v ) [ 0 ] % } class = "profile--pfp--hat hat" { % endif % } >
2023-11-04 21:36:05 +00:00
< a rel = "noopener" href = "{{pfp_expanded}}" class = "profile-pic-100-wrapper" >
2023-10-29 12:51:00 +00:00
< img data-nonce = "{{g.nonce}}" data-onclick = "expandImage('{{pfp_expanded}}')" loading = "lazy" src = "{{pfp}}" class = "profile-pic profile-pic-100 mb-5" >
{% if u.hat_active(v)[0] -%}
2024-03-05 18:40:55 +00:00
< img data-nonce = "{{g.nonce}}" data-onclick = "expandImage('{{pfp_expanded}}')" class = "profile-pic-100-hat hat" loading = "lazy" src = "{{u.hat_active(v)[0]}}?x=8" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{u.hat_active(v)[1]}}" >
2023-10-29 12:51:00 +00:00
{%- endif %}
< / a >
< / div >
< div id = "profilestuff" class = "ml-3 w-100" >
{{userpage_admintools.userBanBlock('desktop')}}
< div class = "d-flex align-items-center mt-1 mb-2" >
2024-04-01 19:58:29 +00:00
< h3 class = "font-weight-bolder my-0 mr-2" id = "profile--name" style = "color: #{{u.name_color}}" > < span { % if u . patron % } class = "patron" style = "background-color:#{{u.name_color}}" { % endif % } { % if u . pride_username ( v ) % } pride_username { % endif % } > {{u.user_name}}< / span > < / h3 >
2022-12-09 03:35:28 +00:00
2024-01-02 18:42:40 +00:00
{% if can_see(v, u) %}
2024-01-07 00:37:06 +00:00
{% set ns.og_usernames = 'Reserved Usernames:' %}
2024-01-02 18:42:40 +00:00
{% if u.username != u.original_username %}
{% set ns.og_usernames = ns.og_usernames + '< br > @' ~ u.original_username %}
{% endif %}
2023-05-16 03:41:45 +00:00
2023-11-25 21:57:15 +00:00
{% if u.extra_username and u.extra_username != u.original_username %}
{% set ns.og_usernames = ns.og_usernames + '< br > @' ~ u.extra_username %}
{% endif %}
2023-10-29 12:51:00 +00:00
{% if u.prelock_username and u.prelock_username != u.original_username %}
{% set ns.og_usernames = ns.og_usernames + '< br > @' ~ u.prelock_username %}
{% endif %}
2024-01-07 00:37:06 +00:00
{% if ns.og_usernames != 'Reserved Usernames:' %}
2024-01-02 18:42:40 +00:00
< span id = "profile--origname" >
< i class = "fas fa-user-tag text-info align-middle ml-2" data-bs-toggle = "tooltip" data-bs-placement = "bottom" data-bs-html = "true" title = "{{ns.og_usernames}}" > < / i >
< / span >
{% endif %}
2023-05-16 03:41:45 +00:00
{% endif %}
2024-02-24 18:55:00 +00:00
{% if FEATURES['PATRON_ICONS'] and u.patron > 1 and u.lifetimedonated_visible %}
2024-04-21 12:23:27 +00:00
< img loading = "lazy" src = "{{SITE_FULL_IMAGES}}/i/{{SITE_NAME}}/badges/2{{u.patron}}.webp?b=13" class = "ml-3 patron-img" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{u.patron_tooltip}}" alt = "{{u.patron_tooltip}}" >
2023-10-29 12:51:00 +00:00
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if FEATURES['HOUSES'] and u.house %}
2024-02-19 17:17:57 +00:00
< img loading = "lazy" id = "profile--house" src = "{{SITE_FULL_IMAGES}}/i/houses/{{u.house}}.webp?x=9" class = "ml-3 house-img" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "House {{u.house}}" alt = "House {{u.house}}" >
2023-10-29 12:51:00 +00:00
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if u.verified %}
< span id = "profile--verified" > < i class = "fas fa-badge-check align-middle ml-2 {% if u.verified=='Glowiefied' %}glow{% endif %}" style = "color:{% if u.verifiedcolor %}#{{u.verifiedcolor}}{% else %}#1DA1F2{% endif %}" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{u.verified}}" > < / i > < / span >
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if u.admin_level >= PERMS['ADMIN_MOP_VISIBLE'] %}
< span id = "profile--mop" >
< i class = "fas fa-broom text-admin align-middle ml-2" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Admin" > < / i >
< / span >
{% endif %}
{% if v and v.id != u.id and v.has_follower(u) %}
< span class = "followsyou badge badge-secondary text-small align-middle ml-2" id = "profile--follows-you" > Follows you< / span >
{% endif %}
2023-10-29 13:17:15 +00:00
< / div >
2022-12-09 03:35:28 +00:00
2024-07-22 19:45:53 +00:00
{% if FEATURES['PRONOUNS'] and can_see(v, u) and u.pronouns %}
2023-10-29 13:17:15 +00:00
< p class = "font-weight-bolder" id = "profile--pronouns" style = "color: #{{u.flaircolor}}" > {{u.pronouns_display}}< / p >
{% endif %}
2023-10-29 12:51:00 +00:00
2023-10-29 13:17:15 +00:00
{% if u.flair_html and can_see(v, u) %}
< p class = "font-weight-bolder" id = "profile--flair" style = "color: #{{u.flaircolor}}" > {{u.flair_html | safe}}< / p >
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
< div class = "font-weight-bolder mb-2" id = "profile--simphate" >
< a class = "mr-1" href = "/@{{u.username}}/views" > Profile Views< / a > |
< a class = "mx-1" href = "/@{{u.username}}/upvoters" > Simps< / a > |
< a class = "mx-1" href = "/@{{u.username}}/downvoters" > Haters< / a > |
< a class = "mx-1" href = "/@{{u.username}}/upvoting" > Simps For< / a > |
< a class = "mx-1" href = "/@{{u.username}}/downvoting" > Hates< / a > |
2024-03-02 21:51:15 +00:00
< a class = "mx-1" href = "/@{{u.username}}/voted/posts" > Voted< / a > |
< a class = "mx-1" href = "/@{{u.username}}/bank_statement" > Bank Statement< / a >
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
< div class = "font-weight-bolder mb-1" >
< div class = "my-2" >
2024-04-25 23:31:47 +00:00
< a class = "mr-1" href = "/@{{u.username}}/followers" id = "profile--followers" > {{u.stored_subscriber_count|commas}} follower{{'s' if u.stored_subscriber_count != 1 else ''}}< / a > |
2023-01-01 11:36:20 +00:00
2024-04-25 23:31:47 +00:00
< a class = "mx-1" href = "/@{{u.username}}/following" id = "profile--following" > follows {{u.follow_count|commas}} user{{'s' if u.follow_count != 1 else ''}}< / a > |
2022-12-09 03:35:28 +00:00
2024-04-25 23:31:47 +00:00
< a class = "mx-1" href = "/@{{u.username}}/blockers" id = "profile--blockers" > {{u.blocking_count|commas}} blocker{{'s' if u.blocking_count != 1 else ''}}< / a > |
2023-06-29 21:04:59 +00:00
2024-04-25 23:31:47 +00:00
< a class = "mx-1" href = "/@{{u.username}}/blocking" id = "profile--blocking" > blocks {{u.block_count|commas}} user{{'s' if u.block_count != 1 else ''}}< / a > |
2023-06-29 21:04:59 +00:00
2024-04-25 23:31:47 +00:00
< a class = "mx-1" href = "/@{{u.username}}/muters" id = "profile--muters" > {{u.muting_count|commas}} muter{{'s' if u.muting_count != 1 else ''}}< / a > |
2023-06-29 21:04:59 +00:00
2024-04-25 23:31:47 +00:00
< a class = "mx-1" href = "/@{{u.username}}/muting" id = "profile--muting" > mutes {{u.mute_count|commas}} user{{'s' if u.mute_count != 1 else ''}}< / a >
2023-10-29 13:17:15 +00:00
< / div >
2023-09-07 09:35:06 +00:00
2024-04-09 14:44:01 +00:00
< span id = "profile-coins-amount" > {{u.coins|commas}}< / span >
2024-03-05 18:40:55 +00:00
< img loading = "lazy" alt = "coins" class = "ml-1 mb-1 mr-2" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Coins" height = "20" src = "{{SITE_FULL_IMAGES}}/i/coins.webp?x=8" >
2023-09-07 09:35:06 +00:00
2023-10-29 13:17:15 +00:00
{% if FEATURES['MARSEYBUX'] %}
2024-04-09 14:44:01 +00:00
< span id = "profile-bux-amount" > {{u.marseybux|commas}}< / span >
2024-03-05 18:40:55 +00:00
< img loading = "lazy" alt = "marseybux" class = "ml-1 mb-1 mr-2" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Marseybux" height = "20" width = "46" src = "{{SITE_FULL_IMAGES}}/i/marseybux.webp?x=8" >
2023-10-29 13:17:15 +00:00
{% endif %}
< / div >
2023-06-29 21:04:59 +00:00
2024-01-12 11:25:27 +00:00
< span id = "profile--joined" > Joined < span id = "profile--joined--time" data-bs-toggle = "tooltip" data-bs-placement = "bottom" data-nonce = "{{g.nonce}}" data-onmouseover = "timestamp(this, '{{u.created_utc}}')" > {{u.created_date}}< / span > < / span >
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
{% if v and v.admin_level >= PERMS['VIEW_LAST_ACTIVE'] -%}
< span id = "profile--lastactive" class = "ml-2" > last active < span id = "profile--lastactive--time" data-bs-toggle = "tooltip" data-bs-placement = "bottom" data-nonce = "{{g.nonce}}" data-onmouseover = "timestamp(this, '{{u.last_active}}')" > {{u.last_active_date}}< / span > < / span >
{%- endif %}
< / div >
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
{% if FEATURES['USERS_PROFILE_BODYTEXT'] -%}
{% if u.bio_html and can_see(v, u) %}
< div class = "text-muted font-weight-bolder mt-1" id = "profile--bio" > {{u.bio_html | safe}}< / div >
{% else %}
< p class = "text-muted" id = "profile--bio" > No bio...< / p >
{% endif %}
2023-10-26 17:04:15 +00:00
2023-10-29 13:17:15 +00:00
{% if u.friends_html and can_see(v, u) %}
< p class = "text-muted font-weight-bold" > Friends:< / p >
< div id = "profile--friends" > {{u.friends_html | safe}}< / div >
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
{% if u.enemies_html and can_see(v, u) %}
< p class = "text-muted font-weight-bold" > Enemies:< / p >
< div id = "profile--enemies" > {{u.enemies_html | safe}}< / div >
{% endif %}
{%- endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
{% if u.received_awards and FEATURES['AWARDS'] %}
< div class = "text-white rounded p-2 mb-3" id = "profile--awards" style = "background-color: rgba(50, 50, 50, 0.6); width: 30%" >
< p class = "text-uppercase my-0" style = "font-weight: bold; font-size: 12px" > Awards received< / p >
{% for a in u.received_awards %}
< span class = "d-inline-block mx-1 profile--awards--award" >
< i class = "{{a['icon']}} {{a['color']}} fa-fw" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{a['title']}} Awards received" > < / i >
x{{a['count']}}
< / span >
{% endfor %}
< / div >
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
{% if u.moderated_holes %}
< div class = "text-white rounded p-2 mb-3" id = "profile--holes" style = "background-color: rgba(50, 50, 50, 0.6); width: 30%" >
< p class = "text-uppercase my-0 pb-1" style = "font-weight: bold; font-size: 12px" > Moderator of< / p >
{% for i in u.moderated_holes %}
< span class = "d-inline-block mx-1" >
< a href = "/h/{{i}}" > /h/{{i}}< / a >
< / span >
{% endfor %}
< / div >
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
{% if u.group_memberships %}
< div class = "text-white rounded p-2 mb-3" id = "profile--groups" style = "background-color: rgba(50, 50, 50, 0.6); width: 30%" >
< p class = "text-uppercase my-0 pb-1" style = "font-weight: bold; font-size: 12px" > Member of< / p >
{% for i in u.group_memberships %}
2024-02-11 11:00:37 +00:00
{% set is_owner = (u.id == i[1].owner_id) %}
< span class = "d-inline-block mx-1 {% if u.id == i[1].owner_id %}font-weight-bolder{% endif %}" { % if is_owner % } data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Owner" { % endif % } >
2024-01-12 05:39:05 +00:00
< a href = "/!{{i[0]}}" { % if is_owner % } style = "color: #bbb !important" { % endif % } > !{{i[0]}}< / a >
2023-10-29 13:17:15 +00:00
< / span >
{% endfor %}
< / div >
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 13:17:15 +00:00
< div class = "d-flex justify-content-between align-items-center" >
< div >
{% if v and v.id != u.id %}
< div id = "profile--actionbtns" >
< div class = "actionbtns mb-3" >
< button type = "button" id = "button-sub" class = "btn btn-primary {% if is_following or u.is_blocked %}d-none{% endif %}" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/follow/{{u.username}}','button-unsub','button-sub','d-none')" > Follow< / button >
< button type = "button" id = "button-unsub" class = "btn btn-secondary {% if not is_following %}d-none{% endif %}" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unfollow/{{u.username}}','button-unsub','button-sub','d-none')" > Unfollow< / button >
2023-10-29 12:51:00 +00:00
2024-03-10 14:27:21 +00:00
< form action = "/@{{u.username}}/chat" method = "post" >
< input hidden name = "formkey" value = "{{v|formkey}}" class = "notranslate" translate = "no" >
< button type = "submit" class = "btn btn-primary" > Chat< / button >
< / form >
2023-10-29 13:17:15 +00:00
< button type = "button" class = "btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "toggleElement('message', 'input-message')" > Message< / button >
2023-10-29 12:51:00 +00:00
2023-10-29 13:17:15 +00:00
{% if FEATURES['USERS_SUICIDE'] -%}
< button type = "button" class = "btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/@{{u.username}}/suicide')" > Get Them Help< / button >
{%- endif %}
< button type = "button" class = "btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "toggleElement('coin-transfer', 'coin-transfer-amount')" > Gift Coins< / button >
{% if FEATURES['MARSEYBUX'] -%}
< button type = "button" class = "btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "toggleElement('bux-transfer', 'bux-transfer-amount')" > Gift Marseybux< / button >
{%- endif %}
2023-10-29 12:51:00 +00:00
2023-10-29 13:17:15 +00:00
< button type = "button" class = "btn btn-danger" data-nonce = "{{g.nonce}}" data-onclick = "postToastReload(this,'/block_user?username={{u.username}}')" > Block< / button >
2023-10-29 12:51:00 +00:00
2023-10-29 13:17:15 +00:00
{% if u.id != AUTOJANNY_ID %}
< button type = "button" id = "mute-notifs" class = "btn btn-danger {% if v.has_muted(u) %}d-none{% endif %}" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/mute_notifs/{{u.id}}','mute-notifs','unmute-notifs','d-none')" > Mute notifications from user< / button >
< button type = "button" id = "unmute-notifs" class = "btn btn-success {% if not v.has_muted(u) %}d-none{% endif %}" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unmute_notifs/{{u.id}}','mute-notifs','unmute-notifs','d-none')" > Unmute notifications from user< / button >
{% endif %}
< / div >
< / div >
< form class = "d-none toggleable" id = "message" action = "/@{{u.username}}/message" method = "post" data-nonce = "{{g.nonce}}" data-onsubmit = "sendMessage(this)" >
2024-03-01 17:03:21 +00:00
< input hidden name = "formkey" value = "{{v|formkey}}" class = "notranslate" translate = "no" >
2023-10-29 13:17:15 +00:00
< textarea autocomplete = "off" id = "input-message" form = "message" name = "message" rows = "3" minlength = "1" maxlength = "10000" class = "file-ta form-control b2 mt-1" data-preview = "message-preview" data-nonce = "{{g.nonce}}" data-oninput = "markdown(this);handle_disabled(this)" > < / textarea >
< div class = "format-btns" >
{{macros.emoji_btn('input-message')}}
{{macros.gif_btn('input-message')}}
{{macros.file_btn('file-upload-macro', not get_setting('dm_media'))}}
2023-10-29 12:51:00 +00:00
< / div >
2023-10-29 13:17:15 +00:00
< div class = "d-flex" >
< input type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "remove_dialog()" value = "Submit" class = "btn btn-primary ml-auto handle_disabled disabled" disabled >
< / div >
< / form >
< div id = "message-preview" class = "preview mt-2" > < / div >
< div class = "d-none mt-3 toggleable" id = "coin-transfer" >
< input autocomplete = "off" id = "coin-transfer-amount" class = "form-control" name = "amount" type = "number" data-nonce = "{{g.nonce}}" data-oninput = "updateTax()" >
< textarea autocomplete = "off" id = "coin-transfer-reason" maxlength = 200 type = "text" class = "form-control" name = "reason" placeholder = "Gift message! (optional)" > < / textarea >
< div class = "d-flex" >
{{macros.emoji_btn('coin-transfer-reason')}}
{{macros.gif_btn('coin-transfer-reason')}}
< / div >
< div class = "mt-1" >
{{u.username}} will receive < span id = "coins-transfer-taxed" > 0< / span > coins
< / div >
< button type = "button" class = "btn btn-primary mt-2 mb-3" data-nonce = "{{g.nonce}}" data-onclick = "transferCoins(this)" > Gift< / button >
2022-12-09 03:35:28 +00:00
< / div >
2023-10-29 13:17:15 +00:00
< div class = "d-none mt-3 toggleable" id = "bux-transfer" >
< input autocomplete = "off" id = "bux-transfer-amount" class = "form-control" name = "amount" type = "number" data-nonce = "{{g.nonce}}" data-oninput = "updateBux()" >
< textarea autocomplete = "off" id = "bux-transfer-reason" type = "text" class = "form-control" name = "reason" placeholder = "Gift message! (optional)" > < / textarea >
< div class = "d-flex" >
{{macros.emoji_btn('bux-transfer-reason')}}
{{macros.gif_btn('bux-transfer-reason')}}
< / div >
< div class = "mt-1" >
{{u.username}} will receive < span id = "bux-transfer-taxed" > 0< / span > marseybux
< / div >
< button type = "button" class = "btn btn-primary mt-2 mb-3" data-nonce = "{{g.nonce}}" data-onclick = "transferBux(this)" > Gift< / button >
< / div >
{{userpage_admintools.userAdminTools('desktop')}}
{% endif %}
< div class = "actionbtns" >
{% if v and v.id == u.id %}
< a href = "/settings/personal" class = "btn btn-secondary" > < i class = "fas fa-edit mr-1" > < / i > Edit Profile< / a >
{% endif %}
{% if FEATURES['USERS_PROFILE_SONG'] and u.song and v and (v.id == u.id or v.mute and not u.unmutable) %}
< button id = "toggle-anthem" type = "button" class = "btn btn-secondary" data-nonce = "{{g.nonce}}" data-onclick = "toggle()" { % if v . id = = u . id % } style = "margin-bottom:0!important;padding:0.3rem 0.75rem!important" { % endif % } >
< i id = "toggle-anthem-icon" class = "fas fa-music mr-1" > < / i > Profile Anthem
< / button >
{% endif %}
< / div >
< div class = "mt-3" id = "profile--info" >
< p id = "profile--info--id" > User ID: {{u.id}}< / p >
2024-03-09 11:40:53 +00:00
< p id = "profile--info--truescore" > True score: {{u.truescore|commas}}< / p >
< p id = "profile--info--casino-winnings" > Casino winnings: {{u.winnings|commas}}< / p >
< p id = "profile--info--lottery-winnings" > Lottery winnings: {{u.total_lottery_winnings|commas}}< / p >
2023-10-29 13:17:15 +00:00
< p id = "profile--info--hats-owned" { % if u . num_of_owned_hats > = hats_total %}class="profile-owned-all-hats"{% endif %}>{{u.num_of_owned_hats}} / {{hats_total}} hats owned ({{hats_owned_percent}})< / p >
2024-03-09 11:40:53 +00:00
< p id = "profile--info--spent" > Currency spent on awards: {{u.currency_spent_on_awards|commas}}< / p >
< p id = "profile--info--spent" > Currency spent on hats: {{u.currency_spent_on_hats|commas}}< / p >
2023-10-29 13:17:15 +00:00
2024-02-18 16:35:16 +00:00
< p id = "profile--info--effortposts" >
Effortposts made: < a href = '/search/posts?q=author:{{u.username}}+effortpost:true' > < b > {{u.effortposts_made}}< / b > < / a >
< / p >
2023-10-29 13:17:15 +00:00
{% if u.lifetimedonated_visible %}
2024-06-27 11:13:19 +00:00
< p id = "profile--info--lifetime-donated" > Lifetime donated: ${{u.lifetimedonated|commas}} (visible to everyone)< / p >
< p id = "profile--info--discount" > Total award discount: {{u.formatted_award_discount}} (visible to everyone)< / p >
2023-10-29 13:17:15 +00:00
{% elif v.id == u.id or v.admin_level >= PERMS['VIEW_PATRONS'] %}
2024-06-27 11:13:19 +00:00
< p id = "profile--info--lifetime-donated" > Lifetime donated: ${{u.lifetimedonated|commas}} (visible to you only)< / p >
< p id = "profile--info--discount" > Total award discount: {{u.formatted_award_discount}} (visible to you only)< / p >
2023-10-29 13:17:15 +00:00
{% endif %}
{% if u.is_private %}
< p id = "profile--info--private" > User has private mode enabled< / p >
{% endif %}
{% if v and (v.admin_level >= PERMS['VIEW_ALTS'] or v.alt) %}
{% if v.admin_level >= PERMS['USER_LINK'] %}
< span id = "profile--alts" > < a href = "/@{{u.username}}/alts" > {{alts|length}} Alt{{macros.plural(alts|length)}}< / a > :< / span >
{% else %}
< span id = "profile--alts" > {{alts|length}} Alt{{macros.plural(alts|length)}}:< / span >
{% endif %}
< ul id = "profile--alts-list" >
{% if can_see(v, u) %}
{% for account in alts %}
< li > < a href = "{{account.url}}" > @{{account.username}}< / a > {% if account._is_manual %} [m]{% endif %}< / li >
{% endfor %}
{% endif %}
< / ul >
{% endif %}
2022-12-09 03:35:28 +00:00
< / div >
2023-10-29 12:51:00 +00:00
< / div >
< / div >
2023-10-29 13:17:15 +00:00
{% if FEATURES['BADGES'] -%}
< div id = "profile--badges" >
2024-02-18 16:27:33 +00:00
{% for b in u.ordered_badges(v) %}
2023-10-29 13:17:15 +00:00
{% if b.url %}
2023-11-04 21:36:05 +00:00
< a rel = "noopener" href = "{{b.url}}" >
2023-10-29 13:17:15 +00:00
< img class = "contain" alt = "{{b.name}}" width = 55 height = 60 loading = "lazy" src = "{{b.path}}" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{b.text}}" { % if b . until % } data-until = "{{b.until}}" data-nonce = "{{g.nonce}}" data-onmouseover = "badge_timestamp(this)" { % endif % } >
< / a >
{% else %}
< img class = "contain" alt = "{{b.name}}" width = 55 height = 60 loading = "lazy" src = "{{b.path}}" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{b.text}}" { % if b . until % } data-until = "{{b.until}}" data-nonce = "{{g.nonce}}" data-onmouseover = "badge_timestamp(this)" { % endif % } >
{% endif %}
{% endfor %}
< / div >
{%- endif %}
2023-10-29 12:51:00 +00:00
< / div >
< / div >
< / div >
2023-10-29 13:17:15 +00:00
< / div >
< / div >
< / div >
< / div >
{% endblock %}
2023-01-23 09:58:38 +00:00
2023-10-29 13:17:15 +00:00
{% block mobileUserBanner %}
2023-10-29 12:51:00 +00:00
< div class = "container-fluid pb-0 text-center bg-white d-md-none" style = "border-radius:0!important" >
< div class = "row" >
< div class = "col px-0" >
2023-11-04 21:36:05 +00:00
< a rel = "noopener" href = "{{u.banner_url}}" >
2023-10-29 12:51:00 +00:00
< img loading = "lazy" alt = "@{{u.username}}'s banner" data-nonce = "{{g.nonce}}" data-onclick = "expandImage()" src = "{{u.banner_url}}" width = 100% style = "object-fit:cover" >
< / a >
< / div >
< / div >
< div class = "row border-bottom" >
< div class = "col" >
< div style = "margin-top: -34px" id = "profile-mobile--pfp" >
2023-11-04 21:36:05 +00:00
< a rel = "noopener" href = "{{pfp_expanded}}" class = "profile-pic-65-wrapper" >
2023-10-29 12:51:00 +00:00
< img data-nonce = "{{g.nonce}}" data-onclick = "expandImage('{{pfp_expanded}}')" loading = "lazy" src = "{{pfp}}" class = "profile-pic-65 bg-white mb-2" >
{% if u.hat_active(v)[0] -%}
2024-03-05 18:40:55 +00:00
< img data-nonce = "{{g.nonce}}" data-onclick = "expandImage('{{pfp_expanded}}')" class = "profile-pic-65-hat hat" loading = "lazy" src = "{{u.hat_active(v)[0]}}?x=8" >
2023-10-29 12:51:00 +00:00
{%- endif %}
< / a >
< / div >
< div class = "mt-n3 py-3" >
{{userpage_admintools.userBanBlock('mobile')}}
2024-04-01 19:58:29 +00:00
< h5 class = " d-inline-block" id = "profile-mobile--name" style = "color: #{{u.name_color}}" > < span { % if u . patron % } class = "patron" style = "background-color:#{{u.name_color}}" { % endif % } { % if u . pride_username ( v ) % } pride_username { % endif % } > {{u.user_name}}< / span > < / h5 >
2023-10-29 12:51:00 +00:00
2024-01-07 00:37:06 +00:00
{% if can_see(v, u) and ns.og_usernames != 'Reserved Usernames:' %}
2023-10-29 12:51:00 +00:00
< span id = "profile-mobile--origname" >
< i class = "fas fa-user-tag text-info align-middle ml-2" data-bs-toggle = "tooltip" data-bs-placement = "bottom" data-bs-html = "true" title = "{{ns.og_usernames}}" > < / i >
< / span >
{% endif %}
2023-01-23 09:58:38 +00:00
2024-02-24 18:55:00 +00:00
{% if FEATURES['PATRON_ICONS'] and u.patron > 1 and u.lifetimedonated_visible %}
2024-04-21 12:23:27 +00:00
< img loading = "lazy" src = "{{SITE_FULL_IMAGES}}/i/{{SITE_NAME}}/badges/2{{u.patron}}.webp?b=13" class = "ml-2 patron-img" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{u.patron_tooltip}}" alt = "{{u.patron_tooltip}}" >
2023-10-29 12:51:00 +00:00
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if FEATURES['HOUSES'] and u.house %}
2024-02-19 17:17:57 +00:00
< img loading = "lazy" id = "profile-mobile--house" src = "{{SITE_FULL_IMAGES}}/i/houses/{{u.house}}.webp?x=8" class = "ml-2 house-img" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "House {{u.house}}" alt = "House {{u.house}}" >
2023-10-29 12:51:00 +00:00
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if u.verified %}
< span id = "profile-mobile--verified" > < i class = "fas fa-badge-check align-middle ml-2 {% if u.verified=='Glowiefied' %}glow{% endif %}" style = "color:{% if u.verifiedcolor %}#{{u.verifiedcolor}}{% else %}#1DA1F2{% endif %}" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{u.verified}}" > < / i > < / span >
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if u.admin_level >= PERMS['ADMIN_MOP_VISIBLE'] %}
< span id = "profile-mobile--mop" >
< i class = "fas fa-broom text-admin align-middle ml-1" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Admin" > < / i >
< / span >
{% endif %}
{% if v and v.id != u.id and v.has_follower(u) %}
< span class = "followsyou badge badge-secondary text-small align-middle mx-1" id = "profile-mobile--follows-you" > Follows you< / span >
{% endif %}
2022-12-09 03:35:28 +00:00
2024-07-22 19:45:53 +00:00
{% if FEATURES['PRONOUNS'] and can_see(v, u) and u.pronouns %}
2023-10-29 12:51:00 +00:00
< p style = "color: #{{u.flaircolor}}" id = "profile-mobile--pronouns" > {{u.pronouns_display}}< / p >
2022-12-09 03:35:28 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
{% if u.flair_html and can_see(v, u) %}
< p style = "color: #{{u.flaircolor}}" id = "profile-mobile--flair" > {{u.flair_html | safe}}< / p >
{% endif %}
2023-01-01 11:36:20 +00:00
2023-10-29 12:51:00 +00:00
< div class = "font-weight-bolder mb-2" id = "profile-mobile--simphate" >
< a class = "mr-1" href = "/@{{u.username}}/views" > Profile Views< / a > |
< a class = "mx-1" href = "/@{{u.username}}/upvoters" > Simps< / a > |
< a class = "mx-1" href = "/@{{u.username}}/downvoters" > Haters< / a > |
< a class = "mx-1" href = "/@{{u.username}}/upvoting" > Simps For< / a > |
< a class = "mx-1" href = "/@{{u.username}}/downvoting" > Hates< / a > |
2024-03-02 21:51:15 +00:00
< a class = "mx-1" href = "/@{{u.username}}/voted/posts" > Voted< / a > |
< a class = "mx-1" href = "/@{{u.username}}/bank_statement" > Bank Statement< / a >
2022-12-09 03:35:28 +00:00
< / div >
2023-01-01 11:36:20 +00:00
2023-10-29 12:51:00 +00:00
< div class = "font-weight-bolder" >
< div >
2024-04-25 23:31:47 +00:00
< a class = "mr-1" href = "/@{{u.username}}/followers" id = "profile-mobile--followers" > {{u.stored_subscriber_count|commas}} follower{{'s' if u.stored_subscriber_count != 1 else ''}}< / a >
2023-05-14 00:01:00 +00:00
2024-04-25 23:31:47 +00:00
< a class = "mx-1" href = "/@{{u.username}}/following" id = "profile-mobile--following" > follows {{u.follow_count|commas}} user{{'s' if u.follow_count != 1 else ''}}< / a >
2023-10-29 12:51:00 +00:00
< / div >
2023-05-11 13:59:49 +00:00
2023-10-29 12:51:00 +00:00
< div >
2024-04-25 23:31:47 +00:00
< a class = "mr-1" href = "/@{{u.username}}/blockers" id = "profile-mobile--blockers" > {{u.blocking_count|commas}} blocker{{'s' if u.blocking_count != 1 else ''}}< / a >
2022-12-09 03:35:28 +00:00
2024-04-25 23:31:47 +00:00
< a class = "mx-1" href = "/@{{u.username}}/blocking" id = "profile-mobile--blocking" > blocks {{u.block_count|commas}} user{{'s' if u.block_count != 1 else ''}}< / a >
2023-10-29 12:51:00 +00:00
< / div >
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
< div class = "mb-2" >
2024-04-25 23:31:47 +00:00
< a class = "mr-1" href = "/@{{u.username}}/muters" id = "profile-mobile--muters" > {{u.muting_count|commas}} muter{{'s' if u.muting_count != 1 else ''}}< / a >
2022-12-09 03:35:28 +00:00
2024-04-25 23:31:47 +00:00
< a class = "mx-1" href = "/@{{u.username}}/muting" id = "profile-mobile--muting" > mutes {{u.mute_count|commas}} user{{'s' if u.mute_count != 1 else ''}}< / a >
2023-10-29 12:51:00 +00:00
< / div >
2023-06-29 21:04:59 +00:00
2024-04-09 14:44:01 +00:00
< span id = "profile-coins-amount-mobile" class = "font-weight-bold" > {{u.coins|commas}}< / span >
2024-03-05 18:40:55 +00:00
< img loading = "lazy" alt = "coins" class = "ml-1 mb-1 mr-2" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Coins" height = "15" src = "{{SITE_FULL_IMAGES}}/i/coins.webp?x=8" >
2023-06-29 21:04:59 +00:00
2023-10-29 12:51:00 +00:00
{% if FEATURES['MARSEYBUX'] %}
2024-04-09 14:44:01 +00:00
< span id = "profile-bux-amount-mobile" class = "font-weight-bold" > {{u.marseybux|commas}}< / span >
2024-03-05 18:40:55 +00:00
< img loading = "lazy" alt = "marseybux" class = "ml-1 mb-1 mr-2" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Marseybux" height = "15" width = "35" src = "{{SITE_FULL_IMAGES}}/i/marseybux.webp?x=8" >
2023-10-29 12:51:00 +00:00
{% endif %}
2023-06-29 21:04:59 +00:00
2024-01-12 11:25:27 +00:00
< br > < span id = "profile-mobile--joined" > Joined < span id = "profile-mobile--joined--time" data-bs-toggle = "tooltip" data-bs-placement = "bottom" data-nonce = "{{g.nonce}}" data-onmouseover = "timestamp(this, '{{u.created_utc}}')" class = "font-weight-bold" > {{u.created_date}}< / span > < / span >
2023-06-29 21:04:59 +00:00
2023-10-29 12:51:00 +00:00
{% if v and v.admin_level >= PERMS['VIEW_LAST_ACTIVE'] -%}
< br > < span id = "profile-mobile--lastactive" > last active < span id = "profile-mobile--lastactive--time" data-bs-toggle = "tooltip" data-bs-placement = "bottom" data-nonce = "{{g.nonce}}" data-onmouseover = "timestamp(this, '{{u.last_active}}')" class = "font-weight-bold" > {{u.last_active_date}}< / span > < / span >
{%- endif %}
2023-09-07 09:35:06 +00:00
< / div >
2023-09-07 15:26:31 +00:00
2023-10-29 12:51:00 +00:00
{% if FEATURES['USERS_PROFILE_BODYTEXT'] -%}
{% if u.bio_html and can_see(v, u) %}
2024-02-03 18:03:46 +00:00
< div class = "text-muted mt-1" id = "profile-mobile--bio" > {{u.bio_html | safe}}< / div >
2023-10-29 12:51:00 +00:00
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if u.friends_html and can_see(v, u) %}
< p class = "text-muted font-weight-bold mt-3" > Friends:< / p >
< div id = "profile-mobile--friends" > {{u.friends_html | safe}}< / div >
{% endif %}
2023-10-26 17:04:15 +00:00
2023-10-29 12:51:00 +00:00
{% if u.enemies_html and can_see(v, u) %}
< p class = "text-muted font-weight-bold mt-3" > Enemies:< / p >
< div id = "profile-mobile--enemies" > {{u.enemies_html | safe}}< / div >
{% endif %}
2023-10-26 17:04:15 +00:00
{%- endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if u.received_awards and FEATURES['AWARDS'] %}
< div class = "text-white rounded p-2 my-3 text-center" id = "profile-mobile--awards" style = "background-color: rgba(50, 50, 50, 0.6)" >
< p class = "text-uppercase my-0" style = "font-weight: bold; font-size: 12px" > Awards received< / p >
2023-10-29 13:17:15 +00:00
{% for a in u.received_awards %}
2023-10-29 12:51:00 +00:00
< span class = "d-inline-block mx-1 profile-mobile--awards--award" >
< i class = "{{a['icon']}} {{a['color']}} fa-fw" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{a['title']}} Awards received" > < / i >
x{{a['count']}}
< / span >
{% endfor %}
< / div >
2022-12-09 03:35:28 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
{% if u.moderated_holes %}
< div class = "text-white rounded p-2 mb-3" id = "profile-mobile--holes" style = "background-color: rgba(50, 50, 50, 0.6)" >
< p class = "text-uppercase my-0 pb-1" style = "font-weight: bold; font-size: 12px" > Moderator of< / p >
{% for i in u.moderated_holes %}
< span class = "d-inline-block mx-1" >
< a href = "/h/{{i}}" > /h/{{i}}< / a >
< / span >
{% endfor %}
< / div >
2022-12-09 03:35:28 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
{% if u.group_memberships %}
2023-11-03 17:15:10 +00:00
< div class = "text-white rounded p-2 mt-3 mb-3" id = "profile-mobile--groups" style = "background-color: rgba(50, 50, 50, 0.6)" >
2023-10-29 12:51:00 +00:00
< p class = "text-uppercase my-0 pb-1" style = "font-weight: bold; font-size: 12px" > Member of< / p >
{% for i in u.group_memberships %}
2024-02-11 11:00:37 +00:00
{% set is_owner = (u.id == i[1].owner_id) %}
2024-01-12 05:39:05 +00:00
< span class = "d-inline-block mx-1 {% if is_owner %}font-weight-bolder{% endif %}" { % if is_owner % } data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Owner" { % endif % } >
< a href = "/!{{i[0]}}" { % if is_owner % } style = "color: #bbb !important" { % endif % } > !{{i[0]}}< / a >
2023-10-29 12:51:00 +00:00
< / span >
{% endfor %}
< / div >
2022-12-09 03:35:28 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
< div class = "mb-3" id = "profile-mobile--badges" >
2024-02-18 16:27:33 +00:00
{% for b in u.ordered_badges(v) %}
2023-10-29 12:51:00 +00:00
{% if b.url %}
2023-11-04 21:36:05 +00:00
< a rel = "noopener" href = "{{b.url}}" >
2023-10-29 12:51:00 +00:00
< img class = "contain" alt = "{{b.name}}" width = 29.33 height = 32 loading = "lazy" src = "{{b.path}}" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{b.text}}" { % if b . until % } data-until = "{{b.until}}" data-nonce = "{{g.nonce}}" data-onmouseover = "badge_timestamp(this)" { % endif % } >
< / a >
{% else %}
< img class = "contain" alt = "{{b.name}}" width = 29.33 height = 32 loading = "lazy" src = "{{b.path}}" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{b.text}}" { % if b . until % } data-until = "{{b.until}}" data-nonce = "{{g.nonce}}" data-onmouseover = "badge_timestamp(this)" { % endif % } >
{% endif %}
2022-12-09 03:35:28 +00:00
{% endfor %}
< / div >
2023-10-29 12:51:00 +00:00
< div class = "actionbtns" >
{% if v and v.id == u.id %}
< a href = "/settings/personal" class = "btn btn-secondary" > < i class = "fas fa-edit mr-1" > < / i > Edit Profile< / a >
2022-12-09 03:35:28 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
{% if FEATURES['USERS_PROFILE_SONG'] and u.song and v and (v.id == u.id or v.mute and not u.unmutable) %}
< button id = "toggle-anthem-mobile" type = "button" class = "btn btn-secondary" data-nonce = "{{g.nonce}}" data-onclick = "toggle()" { % if v . id = = u . id % } style = "margin-bottom:0!important;padding:0.3rem 0.75rem!important" { % endif % } >
< i id = "toggle-anthem-mobile-icon" class = "fas fa-music mr-1" > < / i > Profile Anthem
< / button >
{% endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if v and v.id != u.id %}
< button type = "button" id = "button-sub2" class = "btn btn-primary {% if is_following or u.is_blocked %}d-none{% endif %}" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/follow/{{u.username}}','button-unsub2','button-sub2','d-none')" > Follow< / button >
< button type = "button" id = "button-unsub2" class = "btn btn-secondary {% if not is_following %}d-none{% endif %}" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unfollow/{{u.username}}','button-unsub2','button-sub2','d-none')" > Unfollow< / button >
2022-12-09 03:35:28 +00:00
2024-03-10 14:27:21 +00:00
< form action = "/@{{u.username}}/chat" method = "post" >
< input hidden name = "formkey" value = "{{v|formkey}}" class = "notranslate" translate = "no" >
< button type = "submit" class = "btn btn-primary" > Chat< / button >
< / form >
2023-10-29 12:51:00 +00:00
< button type = "button" class = "btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "toggleElement('message-mobile', 'input-message-mobile')" > Message< / button >
{% if FEATURES['USERS_SUICIDE'] -%}
< button type = "button" class = "btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/@{{u.username}}/suicide')" > Get Them Help< / button >
{%- endif %}
< button type = "button" class = "btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "toggleElement('coin-transfer-mobile', 'coin-transfer-amount-mobile')" > Gift Coins< / button >
{% if FEATURES['MARSEYBUX'] -%}
< button type = "button" class = "btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "toggleElement('bux-transfer-mobile', 'bux-transfer-amount-mobile')" > Gift Marseybux< / button >
{%- endif %}
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
< button type = "button" class = "btn btn-danger" data-nonce = "{{g.nonce}}" data-onclick = "postToastReload(this,'/block_user?username={{u.username}}')" > Block< / button >
2023-09-07 08:34:43 +00:00
2023-10-29 12:51:00 +00:00
{% if u.id != AUTOJANNY_ID %}
< button type = "button" id = "mute-notifs2" class = "btn btn-danger {% if v.has_muted(u) %}d-none{% endif %}" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/mute_notifs/{{u.id}}','mute-notifs2','unmute-notifs2','d-none')" > Mute notifications from user< / button >
2023-09-07 08:34:43 +00:00
2023-10-29 12:51:00 +00:00
< button type = "button" id = "unmute-notifs2" class = "btn btn-success {% if not v.has_muted(u) %}d-none{% endif %}" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unmute_notifs/{{u.id}}','mute-notifs2','unmute-notifs2','d-none')" > Unmute notifications from user< / button >
{% endif %}
2023-09-07 08:34:43 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
< / div >
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
{% if v and v.id != u.id %}
< form class = "d-none toggleable text-left" id = 'message-mobile' action = "/@{{u.username}}/message" method = "post" data-nonce = "{{g.nonce}}" data-onsubmit = "sendMessage(this)" >
2024-03-01 17:03:21 +00:00
< input class = "mt-1" hidden name = "formkey" value = "{{v|formkey}}" class = "notranslate" translate = "no" >
2023-10-29 12:51:00 +00:00
< textarea autocomplete = "off" id = "input-message-mobile" form = "message-mobile" name = "message" rows = "3" minlength = "1" maxlength = "10000" class = "file-ta form-control" data-preview = "message-preview-mobile" data-nonce = "{{g.nonce}}" data-oninput = "markdown(this);handle_disabled(this)" required > < / textarea >
2023-01-24 10:19:20 +00:00
2023-10-29 12:51:00 +00:00
< div class = "format-btns" >
{{macros.emoji_btn('input-message-mobile')}}
{{macros.gif_btn('input-message-mobile')}}
{{macros.file_btn('file-upload-mobile')}}
< / div >
2023-01-24 10:19:20 +00:00
2023-10-29 12:51:00 +00:00
< div class = "d-flex" >
< input type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "remove_dialog()" value = "Submit" class = "btn btn-primary ml-auto handle_disabled disabled" disabled >
< / div >
< / form >
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
< div id = "message-preview-mobile" class = "preview my-3" > < / div >
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
< div class = "d-none mt-3 toggleable" id = "coin-transfer-mobile" >
< input autocomplete = "off" id = "coin-transfer-amount-mobile" class = "form-control" name = "amount" type = "number" data-nonce = "{{g.nonce}}" data-oninput = "updateTax(true)" >
< textarea autocomplete = "off" id = "coin-transfer-reason-mobile" maxlength = 200 type = "text" class = "form-control" name = "reason" placeholder = "Gift message! (optional)" > < / textarea >
< div class = "d-flex" >
{{macros.emoji_btn('coin-transfer-reason-mobile')}}
{{macros.gif_btn('coin-transfer-reason-mobile')}}
< / div >
< div >
{{u.username}} will receive < span id = "coins-transfer-taxed-mobile" > 0< / span > coins
< / div >
< button type = "button" class = "btn btn-primary mt-2 mb-3" data-nonce = "{{g.nonce}}" data-onclick = "transferCoins(this, true)" > Gift< / button >
2023-10-06 14:36:21 +00:00
< / div >
2022-12-09 03:35:28 +00:00
2023-10-29 12:51:00 +00:00
< div class = "d-none mt-3 toggleable" id = "bux-transfer-mobile" >
< input autocomplete = "off" id = "bux-transfer-amount-mobile" class = "form-control" name = "amount" type = "number" data-nonce = "{{g.nonce}}" data-oninput = "updateBux(true)" >
< textarea autocomplete = "off" id = "bux-transfer-reason-mobile" type = "text" class = "form-control" name = "reason" placeholder = "Gift message! (optional)" > < / textarea >
< div class = "d-flex" >
{{macros.emoji_btn('bux-transfer-reason-mobile')}}
{{macros.gif_btn('bux-transfer-reason-mobile')}}
< / div >
< div >
{{u.username}} will receive < span id = "bux-transfer-taxed-mobile" > 0< / span > marseybux
< / div >
< button type = "button" class = "btn btn-primary mt-2 mb-3" data-nonce = "{{g.nonce}}" data-onclick = "transferBux(this, true)" > Gift< / button >
2023-10-06 14:36:21 +00:00
< / div >
2023-10-29 12:51:00 +00:00
{{userpage_admintools.userAdminTools('mobile')}}
2023-05-11 13:57:49 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
< div id = "profile-mobile--info" { % if v . id = = u . id % } class = "mt-4" { % endif % } >
< p id = "profile-mobile--info--id" > User ID: {{u.id}}< / p >
2024-03-09 11:40:53 +00:00
< p id = "profile-mobile--info--truescore" > True score: {{u.truescore|commas}}< / p >
< p id = "profile-mobile--info--casino-winnings" > Casino winnings: {{u.winnings|commas}}< / p >
< p id = "profile-mobile--info--lottery-winnings" > Lottery winnings: {{u.total_lottery_winnings|commas}}< / p >
2023-10-29 12:51:00 +00:00
< p id = "profile-mobile--info--hats-owned" { % if u . num_of_owned_hats > = hats_total %}class="profile-owned-all-hats"{% endif %}>{{u.num_of_owned_hats}} / {{hats_total}} hats owned ({{hats_owned_percent}})< / p >
2024-03-09 12:00:37 +00:00
< p id = "profile-mobile--info--spent" > Currency spent on awards: {{u.currency_spent_on_awards|commas}}< / p >
2024-03-09 11:40:53 +00:00
< p id = "profile-mobile--info--spent" > Currency spent on hats: {{u.currency_spent_on_hats|commas}}< / p >
2023-05-14 00:01:00 +00:00
2024-02-18 16:35:16 +00:00
< p id = "profile-mobile--info--effortposts" >
Effortposts made: < a href = '/search/posts?q=author:{{u.username}}+effortpost:true' > < b > {{u.effortposts_made}}< / b > < / a >
< / p >
2023-10-29 12:51:00 +00:00
{% if u.lifetimedonated_visible %}
2024-06-27 11:13:19 +00:00
< p id = "profile-mobile--info--lifetime-donated" > Lifetime donated: ${{u.lifetimedonated|commas}} (visible to everyone)< / p >
< p id = "profile-mobile--info--discount" > Total award discount: {{u.formatted_award_discount}} (visible to everyone)< / p >
2023-10-29 12:51:00 +00:00
{% elif v.id == u.id or v.admin_level >= PERMS['VIEW_PATRONS'] %}
2024-06-27 11:13:19 +00:00
< p id = "profile-mobile--info--lifetime-donated" > Lifetime donated: ${{u.lifetimedonated|commas}} (visible to you only)< / p >
< p id = "profile-mobile--info--discount" > Total award discount: {{u.formatted_award_discount}} (visible to you only)< / p >
2023-10-29 12:51:00 +00:00
{% endif %}
2023-05-11 13:59:49 +00:00
2023-10-29 12:51:00 +00:00
{% if u.is_private %}
< p id = "profile-mobile--info--private" > User has private mode enabled< / p >
2023-06-28 14:10:30 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
{% if v and (v.admin_level >= PERMS['VIEW_ALTS'] or v.alt) %}
{% if v.admin_level >= PERMS['USER_LINK'] %}
< span id = "profile-mobile--alts" > < a href = "/@{{u.username}}/alts" > {{alts|length}} Alt{{macros.plural(alts|length)}}< / a > :< / span >
{% else %}
< span id = "profile-mobile--alts" > {{alts|length}} Alt{{macros.plural(alts|length)}}:< / span >
2023-06-29 20:14:24 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
< ul id = "profile-mobile--alts-list" >
{% if can_see(v, u) %}
{% for account in alts %}
< li > < a href = "{{account.url}}" > @{{account.username}}< / a > {% if account._is_manual %} [m]{% endif %}< / li >
{% endfor %}
{% endif %}
< / ul >
{% endif %}
< / div >
2022-12-09 03:35:28 +00:00
< / div >
< / div >
< / div >
< / div >
{% endblock %}