2022-05-04 23:09:46 +00:00
{% extends "settings2.html" %}
{% block pagetitle %}Moderation Log{% endblock %}
{% block content %}
{% if v %}
2022-09-24 07:04:06 +00:00
< link rel = "stylesheet" href = "{{'css/main.css' | asset}}" >
2022-12-07 17:53:29 +00:00
{% if v.theme == 'classic_dark' %}
< link rel = "stylesheet" href = "{{('css/classic.css') | asset}}" >
{% endif %}
2022-09-24 07:04:06 +00:00
< link rel = "stylesheet" href = "{{('css/'~v.theme~'.css') | asset}}" >
2022-05-04 23:09:46 +00:00
{% if v.agendaposter %}
2022-12-29 14:20:27 +00:00
< link rel = "stylesheet" href = "{{('css/agendaposter.css') | asset}}" >
{% elif v.css or v.background %}
< link rel = "stylesheet" href = "/{{v.id}}/css" >
2022-05-04 23:09:46 +00:00
{% endif %}
{% else %}
2022-09-24 07:04:06 +00:00
< link rel = "stylesheet" href = "{{'css/main.css' | asset}}" >
< link rel = "stylesheet" href = "{{('css/'~DEFAULT_THEME~'.css') | asset}}" >
2022-05-04 23:09:46 +00:00
{% endif %}
2022-11-04 23:48:16 +00:00
< div class = "row justify-content-around" >
2022-05-04 23:09:46 +00:00
< div class = "col h-100" >
2022-09-29 10:18:27 +00:00
< div class = "d-md-flex justify-content-between mt-4 ml-1" >
2022-05-04 23:09:46 +00:00
< div >
2022-09-29 10:18:27 +00:00
< h5 > {% if sub %}< a href = "/h/{{sub.name}}" > /h/{{sub.name}}< / a > {% endif %}Moderation Log< / h5 >
2022-05-04 23:09:46 +00:00
< / div >
< / div >
< div class = "row" style = "overflow: visible;padding-top:5px;" >
< div class = "col" >
2022-10-29 01:31:25 +00:00
< div class = "d-flex justify-content-between align-items-center" >
2022-05-04 23:09:46 +00:00
{% block navbar %}
2022-10-29 01:31:25 +00:00
< div class = "d-flex align-items-center mb-3 ml-auto" >
2022-05-04 23:09:46 +00:00
< div class = "dropdown dropdown-actions" >
2022-12-25 02:10:56 +00:00
< button type = "button" class = "btn btn-secondary dropdown-toggle" id = "dropdownMenuButton" data-bs-toggle = "dropdown" >
2022-07-13 15:19:36 +00:00
{% if admin %}< img src = "/@{{admin}}/pic" alt = "avatar" class = "profile-pic-20 mr-2" > {{admin}}{% else %}< img src = "/e/marseyjanny.webp" alt = "avatar" class = "profile-pic-20 mr-2" > All{% endif %}
2022-05-04 23:09:46 +00:00
< / button >
2022-12-25 02:10:56 +00:00
< div class = "dropdown-menu" x-placement = "bottom-start" style = "position: absolute ; will-change: transform ; top: 0px ; left: 0px ; transform: translate3d ( 0px , 31px , 0px ) ; max-height: 50vh ;
2022-08-11 12:57:20 +00:00
overflow: auto;">
2022-07-13 15:19:36 +00:00
< a class = "dropdown-item" href = "/log{% if type %}?kind={{type}}{% endif %}" > < img src = "/e/marseyjanny.webp" alt = "avatar" class = "profile-pic-20 mr-2" > All< / a >
2022-05-04 23:09:46 +00:00
{% for a in admins %}
2022-11-04 23:48:16 +00:00
< a class = "dropdown-item" href = "?{{single_user_url}}={{a}}{% if type %}&kind={{type}}{% endif %}" > < img loading = "lazy" src = "/@{{a}}/pic" alt = "avatar" class = "profile-pic-20 mr-2" > {{a}}< / a >
2022-05-04 23:09:46 +00:00
{% endfor %}
< / div >
< / div >
2022-10-29 01:31:25 +00:00
< div class = "dropdown dropdown-actions ml-3" >
2022-12-25 02:10:56 +00:00
< button type = "button" class = "btn btn-secondary dropdown-toggle" id = "dropdownMenuButton2" data-bs-toggle = "dropdown" >
2022-05-04 23:09:46 +00:00
{% if type %}< i class = "fas {{types[type]['icon']}} mr-2" > < / i > {{type}}{% else %}< i class = "fas fa-broom mr-2" > < / i > All{% endif %}
< / button >
2022-12-25 02:10:56 +00:00
< div class = "dropdown-menu" x-placement = "bottom-start" style = "position: absolute ; will-change: transform ; top: 0px ; left: 0px ; transform: translate3d ( 0px , 31px , 0px ) ; max-height: 50vh ;
2022-08-11 12:57:20 +00:00
overflow: auto;">
2022-11-04 23:48:16 +00:00
< a class = "dropdown-item" href = "/log{% if admin %}?{{single_user_url}}={{admin}}{% endif %}" > < i class = "fas fa-broom mr-2" > < / i > All< / a >
2022-05-04 23:09:46 +00:00
{% for t, v in types.items() %}
2022-11-04 23:48:16 +00:00
< a class = "dropdown-item" href = "?{% if admin %}{{single_user_url}}={{admin}}&{% endif %}kind={{t}}" > < i class = "fas {{v['icon']}} mr-2" > < / i > {{t}}< / a >
2022-05-04 23:09:46 +00:00
{% endfor %}
< / div >
< / div >
< / div >
{% endblock %}
< / div >
< / div >
< / div >
< div class = "rounded border bg-white mx-auto" >
{% for ma in actions %}
2022-11-26 19:08:26 +00:00
< div id = "action-{{ma.id}}" class = "modlog-action{% if ma.unread %} unread{% endif %}" >
2022-05-04 23:09:46 +00:00
< div class = "d-flex flex-grow-1 align-items-center" >
< div class = "d-flex align-items-center justify-content-center {{ma.color}} mr-3 rounded-lg flex-shrink-0" style = "width: 32px;height: 32px;" > < i class = "far text-center {{ma.icon}} text-lg text-white fa-fw" > < / i > < / div >
< div class = "d-flex align-items-center" >
< span class = "rounded" >
2022-09-06 03:51:55 +00:00
< div class = "profile-pic-35-wrapper" >
2022-10-29 21:42:30 +00:00
< img loading = "lazy" src = "{{ma.user.profile_url}}" alt = "avatar" class = "profile-pic-35" >
2022-12-24 22:21:49 +00:00
{% if ma.user.hat_active(v)[0] -%}
< img id = "profile-pic-35-hat" class = "profile-pic-35-hat hat" loading = "lazy" src = "{{ma.user.hat_active(v)[0]}}?h=7" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "{{ma.user.hat_active(v)[1]}}" >
2022-09-06 03:51:55 +00:00
{%- endif %}
< / div >
< / span >
2022-05-04 23:09:46 +00:00
< div class = "text-muted pl-3" >
< div >
< a href = "{{ma.user.url}}" class = "font-weight-bold text-black" target = "_self" > @{{ma.user.username}}< / a >
2022-12-29 08:35:23 +00:00
< span > {{ma.string | safe}}< / span >
< / div >
< div class = "text-gray-500" >
2023-01-01 03:05:09 +00:00
< span class = "log--item-age" id = "{{ma.id}}-age" data-bs-toggle = "tooltip" data-bs-placement = "bottom" data-nonce = "{{g.nonce}}" data-onmouseover = "timestamp(this, '{{ma.created_utc}}')" > {{ma.age_string}}< / span >
2022-12-29 08:35:23 +00:00
< a href = "{{ma.permalink}}" > < i class = "far fa-link ml-3 text-muted" > < / i > < / a >
< button type = "button" class = "copy-link ml-3" data-clipboard-text = "{{ma.permalink}}" > < i class = "far fa-copy text-muted" > < / i > < / button >
< / div >
2022-05-04 23:09:46 +00:00
< / div >
< / div >
< / div >
< / div >
{% else %}
2022-09-29 09:39:37 +00:00
< div class = "p-3" > There's nothing here right now.< / div >
2022-05-04 23:09:46 +00:00
{% endfor %}
< / div >
2022-12-25 02:10:56 +00:00
< nav class = "mb-5" >
2022-05-04 23:09:46 +00:00
< ul class = "pagination pagination-sm mb-0" >
{% if page>1 %}
< li class = "page-item" >
2022-11-04 23:48:16 +00:00
< small > < a class = "page-link" href = "{% if sub %}/h/{{sub}}{% endif %}/log?page={{page-1}}{% if admin %}&{{single_user_url}}={{admin}}{% endif %}{% if type %}&kind={{type}}{% endif %}" tabindex = "-1" > Prev< / a > < / small >
2022-05-04 23:09:46 +00:00
< / li >
{% else %}
< li class = "page-item disabled" > < span class = "page-link" > Prev< / span > < / li >
{% endif %}
{% if next_exists %}
< li class = "page-item" >
2022-11-04 23:48:16 +00:00
< small > < a class = "page-link" href = "{% if sub %}/h/{{sub}}{% endif %}/log?page={{page+1}}{% if admin %}&{{single_user_url}}={{admin}}{% endif %}{% if type %}&kind={{type}}{% endif %}" > Next< / a > < / small >
2022-05-04 23:09:46 +00:00
< / li >
{% else %}
< li class = "page-item disabled" > < span class = "page-link" > Next< / span > < / li >
{% endif %}
< / ul >
< / nav >
< / div >
< / div >
2023-01-01 11:12:35 +00:00
< div class = "toast clipboard" id = "toast-success" role = "alert" data-bs-animation = "true" data-bs-autohide = "true" data-bs-delay = "5000" >
2022-07-13 15:19:36 +00:00
< div class = "toast-body text-center" >
< i class = "fas fa-check-circle text-success mr-2" > < / i > Link copied to clipboard
< / div >
< / div >
2022-11-18 19:16:40 +00:00
< script defer src = "{{'js/vendor/clipboard.js' | asset}}" > < / script >
2022-10-06 23:45:23 +00:00
{% endblock %}