2022-10-08 09:31:18 +00:00
{% macro userBanBlock(deviceType) %}
2022-10-08 05:29:20 +00:00
{% if u.is_suspended %}
2022-10-08 05:30:57 +00:00
< h5 class = "text-primary" id = "profile-{{deviceType}}--banned" > BANNED USER
{% if u.ban_reason %}:
{{u.ban_reason | safe}}
2022-10-08 05:29:20 +00:00
{% endif %}
2022-10-08 05:30:57 +00:00
(by < a href = "{{u.banned_by.url}}" > @{{u.banned_by.username}}< / a > )
< / h5 >
{% if u.unban_utc %}
< h5 class = "text-primary" id = "profile--unban" > {{u.unban_string}}< / h5 >
2022-10-08 05:29:20 +00:00
{% endif %}
2022-10-08 05:30:57 +00:00
{% endif %}
{% if v and v.admin_level >= PERMS['USER_SHADOWBAN'] and u.shadowbanned %}
< h5 class = "text-primary" id = "profile-{{deviceType}}--shadowbanned" > SHADOWBANNED USER
{% if u.ban_reason %}:
{{u.ban_reason | safe}}
{% endif %}
2022-12-13 18:50:38 +00:00
(by < a href = "/@{{u.shadowbanner}}" > @{{u.shadowbanner}}< / a > )
2022-10-08 05:30:57 +00:00
< / h5 >
{% endif %}
2022-10-08 09:31:18 +00:00
{% endmacro %}
2022-10-08 05:29:20 +00:00
2022-10-31 22:43:18 +00:00
{% macro userAdminTools(deviceType) %}
2022-10-07 07:57:23 +00:00
{% if v and v.id != u.id and v.admin_level >= PERMS['USER_MODERATION_TOOLS_VISIBLE'] %}
< div class = "admintools-user-lower-{{deviceType}}" >
{% if v.admin_level >= PERMS['USER_TITLE_CHANGE'] %}
2022-10-29 00:38:39 +00:00
< div class = "body d-lg-flex border-bottom mb-2" >
2022-10-07 07:57:23 +00:00
< div class = "w-lg-100" >
2022-12-30 12:52:59 +00:00
< form action = "/admin/title_change/{{u.id}}" method = "post" data-nonce = "{{g.nonce}}" data-onsubmit = "sendFormXHR(this)" >
2023-01-24 05:10:16 +00:00
< input hidden name = "formkey" value = "{{v|formkey}}" >
2022-10-07 07:57:23 +00:00
< input maxlength = 100 autocomplete = "off" id = "customtitlebody-{{deviceType}}" type = "text" name = "title" class = "form-control" placeholder = 'Enter a flair here' value = "{% if u.customtitleplain %}{{u.customtitleplain}}{% endif %}" >
< div class = "d-flex mt-2" >
2023-01-20 07:14:59 +00:00
< div class = "format" > < i class = "btn btn-secondary format d-inline-block m-0 fas fa-smile-beam" data-nonce = "{{g.nonce}}" data-onclick = "loadEmojis('customtitlebody-{{deviceType}}')" data-bs-toggle = "modal" data-bs-target = "#emojiModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add Emoji" > < / i > < / div >
2022-10-29 02:21:06 +00:00
< div class = "custom-control custom-checkbox ml-3" >
2022-10-07 07:57:23 +00:00
< input autocomplete = "off" type = "checkbox" class = "custom-control-input" id = "locked" name = "locked" { % if u . flairchanged % } checked { % endif % } >
< label class = "custom-control-label" for = "locked" > locked< / label >
< / div >
2022-12-30 12:14:18 +00:00
< input autocomplete = "off" class = "btn btn-primary ml-auto" type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "disable(this)" value = "Change Flair" >
2022-10-07 07:57:23 +00:00
< / div >
< / form >
< / div >
< / div >
{% endif %}
{% if v.admin_level >= PERMS['USER_BAN'] %}
2022-12-30 12:14:18 +00:00
< button type = "button" id = "unban-{{deviceType}}" class = "mt-1 {% if not u.is_suspended %}d-none{% endif %} btn btn-success" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unban_user/{{u.id}}','ban-{{deviceType}}','unban-{{deviceType}}','d-none')" > Unban user< / button >
2022-11-05 02:07:29 +00:00
2022-12-30 12:52:59 +00:00
< form id = "ban-{{deviceType}}" class = "my-3 {% if u.is_suspended %}d-none{% endif %}" action = "/ban_user/{{u.id}}" method = "post" data-nonce = "{{g.nonce}}" data-onsubmit = "sendFormXHRSwitch(this)" >
2023-01-24 05:10:16 +00:00
< input hidden name = "formkey" value = "{{v|formkey}}" >
2023-01-01 02:17:46 +00:00
< input autocomplete = "off" style = "font-size:11px" type = "text" class = "form-control" maxlength = "256" name = "reason" placeholder = "Ban Reason" data-nonce = "{{g.nonce}}" data-undisable_element = "user-ban-submit-{{deviceType}}" required >
2022-11-05 02:07:29 +00:00
< input autocomplete = "off" style = "font-size:11px" type = "number" step = "any" class = "form-control" name = "days" placeholder = "Days (blank = permanent)" >
< div class = "custom-control custom-checkbox mb-1" >
< input autocomplete = "off" type = "checkbox" id = "alts-2-{{deviceType}}" class = "custom-control-input" name = "alts" value = "1" >
< label class = "custom-control-label" for = "alts-2-{{deviceType}}" > Include alts< / label >
< / div >
2022-12-30 12:14:18 +00:00
< input autocomplete = "off" id = "user-ban-submit-{{deviceType}}" type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "disable(this)" class = "btn btn-danger" value = "Ban user" disabled >
2022-11-05 02:07:29 +00:00
< / form >
2022-10-07 07:41:59 +00:00
{% endif %}
2022-10-07 07:57:23 +00:00
{% if v.admin_level >= PERMS['USER_SHADOWBAN'] %}
2022-12-30 12:14:18 +00:00
< button type = "button" id = "unshadowban-{{deviceType}}" class = "mt-1 {% if not u.shadowbanned %}d-none{% endif %} btn btn-success" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unshadowban/{{u.id}}','shadowban-{{deviceType}}','unshadowban-{{deviceType}}','d-none')" > Unshadowban user< / button >
2022-11-05 02:16:39 +00:00
2022-12-30 12:52:59 +00:00
< form id = "shadowban-{{deviceType}}" class = "my-3 {% if u.shadowbanned %}d-none{% endif %}" action = "/shadowban/{{u.id}}" method = "post" data-nonce = "{{g.nonce}}" data-onsubmit = "sendFormXHRSwitch(this)" >
2023-01-24 05:10:16 +00:00
< input hidden name = "formkey" value = "{{v|formkey}}" >
2023-01-01 02:17:46 +00:00
< input autocomplete = "off" style = "font-size:11px" type = "text" class = "form-control" maxlength = "256" name = "reason" placeholder = "Shadowban Reason" data-nonce = "{{g.nonce}}" data-undisable_element = "user-shadowban-submit-{{deviceType}}" required >
2022-12-30 12:14:18 +00:00
< input autocomplete = "off" id = "user-shadowban-submit-{{deviceType}}" type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "disable(this)" class = "btn btn-danger" value = "Shadowban user" disabled >
2022-11-05 02:16:39 +00:00
< / form >
2022-10-07 07:41:59 +00:00
{% endif %}
2022-10-07 07:57:23 +00:00
{% if v.admin_level >= PERMS['USER_AGENDAPOSTER'] %}
2022-12-30 12:14:18 +00:00
< button type = "button" id = "unagendaposter-{{deviceType}}" class = "mt-1 {% if not u.agendaposter %}d-none{% endif %} btn btn-success" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unagendaposter/{{u.id}}','agendaposter-{{deviceType}}','unagendaposter-{{deviceType}}','d-none')" > Unchud< / button >
2022-11-07 06:08:50 +00:00
2022-12-30 12:52:59 +00:00
< form id = "agendaposter-{{deviceType}}" class = "my-3 {% if u.agendaposter %}d-none{% endif %}" action = "/agendaposter/{{u.id}}" method = "post" data-nonce = "{{g.nonce}}" data-onsubmit = "sendFormXHRSwitch(this)" >
2023-01-24 05:10:16 +00:00
< input hidden name = "formkey" value = "{{v|formkey}}" >
2022-10-07 07:57:23 +00:00
< input autocomplete = "off" type = "number" step = "any" name = "days" class = "form-control" placeholder = "Days (0 or blank = permanent)" >
2022-12-30 12:14:18 +00:00
< input type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "disable(this)" class = "btn btn-danger" value = "Chud" >
2022-10-07 07:41:59 +00:00
< / form >
{% endif %}
2023-01-01 11:36:20 +00:00
2022-10-31 22:43:18 +00:00
< div class = "actionbtns mt-3" >
{% if v.admin_level >= PERMS['ADMIN_ADD'] %}
2022-12-30 12:14:18 +00:00
< button type = "button" id = "add-admin-{{deviceType}}" class = "{% if u.admin_level >= PERMS['ADMIN_ADD_PERM_LEVEL'] %}d-none{% endif %} btn btn-primary" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/@{{u.username}}/make_admin','add-admin-{{deviceType}}','remove-admin-{{deviceType}}','d-none')" > Make Admin< / button >
2022-10-31 22:43:18 +00:00
{% endif %}
{% if v.admin_level >= PERMS['ADMIN_REMOVE'] %}
2022-12-30 12:14:18 +00:00
< button type = "button" id = "remove-admin-{{deviceType}}" class = "{% if u.admin_level < 1 %}d-none{% endif %} btn btn-danger" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/@{{u.username}}/remove_admin','add-admin-{{deviceType}}','remove-admin-{{deviceType}}','d-none')" > Remove Admin< / button >
2022-10-31 22:43:18 +00:00
{% endif %}
{% if v.admin_level >= PERMS['ADMIN_ACTIONS_REVERT'] and u.admin_level %}
2022-12-30 12:14:18 +00:00
< button type = "button" class = "btn btn-danger" data-areyousure = "postToastSwitch(this,'/@{{u.username}}/revert_actions')" data-nonce = "{{g.nonce}}" data-onclick = "areyousure(this)" > Revert Admin Actions< / button >
2022-10-31 22:43:18 +00:00
{% endif %}
{% if v.admin_level >= PERMS['USER_BAN'] %}
2022-12-30 12:14:18 +00:00
< button type = "button" id = "mute-user-{{deviceType}}" class = "{% if u.is_muted %}d-none{% endif %} btn btn-danger" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/mute_user/{{u.id}}','mute-user-{{deviceType}}','unmute-user-{{deviceType}}','d-none')" > Mute< / button >
< button type = "button" id = "unmute-user-{{deviceType}}" class = "mb-1 {% if not u.is_muted %}d-none{% endif %} btn btn-success" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unmute_user/{{u.id}}','mute-user-{{deviceType}}','unmute-user-{{deviceType}}','d-none')" > Unmute< / button >
2022-10-31 22:43:18 +00:00
{% endif %}
{% if v and v.admin_level >= PERMS['POST_COMMENT_MODERATION'] %}
2022-12-30 12:52:59 +00:00
< form action = "/admin/unnuke_user" method = "post" data-nonce = "{{g.nonce}}" data-onsubmit = "sendFormXHR(this)" >
2023-01-24 05:10:16 +00:00
< input hidden name = "formkey" , value = "{{v|formkey}}" >
< input hidden name = "user" value = "{{u.username}}" >
2022-12-30 12:14:18 +00:00
< input type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "disable(this)" class = "btn btn-success" value = "Approve User's Content" >
2022-10-31 22:43:18 +00:00
< / form >
2022-12-30 12:52:59 +00:00
< form class = "mt-1" action = "/admin/nuke_user" method = "post" data-nonce = "{{g.nonce}}" data-onsubmit = "sendFormXHR(this)" >
2023-01-24 05:10:16 +00:00
< input hidden name = "formkey" , value = "{{v|formkey}}" >
< input hidden name = "user" value = "{{u.username}}" >
2022-12-30 12:14:18 +00:00
< input type = "submit" data-nonce = "{{g.nonce}}" data-onclick = "disable(this)" class = "btn btn-danger" value = "Remove User's Content" >
2022-10-31 22:43:18 +00:00
< / form >
{% endif %}
2023-01-25 15:41:46 +00:00
{% if v.admin_level >= PERMS['USER_BLACKLIST'] %}
< button type = "button" id = "unblacklist-{{deviceType}}" class = "mt-1 {% if not u.blacklisted_by %}d-none{% endif %} btn btn-success" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/unblacklist/{{u.id}}','blacklist-{{deviceType}}','unblacklist-{{deviceType}}','d-none')" > Unblacklist From Restricted Holes< / button >
< button type = "button" id = "blacklist-{{deviceType}}" class = "mt-1 {% if u.blacklisted_by %}d-none{% endif %} btn btn-danger" data-nonce = "{{g.nonce}}" data-onclick = "postToastSwitch(this,'/blacklist/{{u.id}}','blacklist-{{deviceType}}','unblacklist-{{deviceType}}','d-none')" > Blacklist From Restricted Holes< / button >
{% endif %}
2022-10-31 22:43:18 +00:00
< / div >
2022-10-07 07:57:23 +00:00
< / div >
{% endif %}
2022-10-08 06:08:35 +00:00
{%- endmacro %}