2022-11-21 08:52:22 +00:00
|
|
|
{%- extends 'root.html' -%}
|
|
|
|
{% block pagetitle %}User List{% endblock %}
|
2022-11-28 17:25:01 +00:00
|
|
|
{% block pagetype %}settings2{% endblock %}
|
2023-02-24 06:31:27 +00:00
|
|
|
{% block body_attributes %}class="has_header"{% endblock %}
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block body %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% include "header.html" %}
|
|
|
|
{% block subNav %}
|
2022-09-29 10:18:27 +00:00
|
|
|
{% if not request.path.startswith('/h/') %}
|
2022-10-23 17:57:38 +00:00
|
|
|
<div class="container-fluid bg-white sticky d-mob-none" style="padding-top: 50px; padding-bottom: 0 !important;">
|
2022-09-29 10:18:27 +00:00
|
|
|
<div class="row box-shadow-bottom">
|
|
|
|
<div class="col">
|
|
|
|
<div class="container" style="padding-bottom: 0;">
|
2022-12-07 06:21:13 +00:00
|
|
|
<div class="row box-shadow-bottom bg-white">
|
2022-09-29 10:18:27 +00:00
|
|
|
<div class="col">
|
|
|
|
<div class="d-flex flex-row-reverse justify-content-end">
|
|
|
|
<ul class="nav settings-nav" style="margin-left: -15px;">
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link{% if request.path == '/leaderboard' %} active{% endif %}" href="/leaderboard"><i class="fas fa-trophy pr-2"></i>Leaderboard</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link{% if request.path == '/admins' %} active{% endif %}" href="/admins"><i class="fas fa-crown pr-2"></i>Admins</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link{% if request.path == '/log' %} active{% endif %}" href="/log"><i class="fas fa-scroll-old pr-2"></i>Moderation Log</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2022-11-28 01:32:01 +00:00
|
|
|
<a class="nav-link{% if request.path == '/banned' %} active{% endif %}" href="/banned"><i class="fas fa-user-slash pr-2"></i>Banned Users</a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
{% if v and v.admin_level >= PERMS['USER_BLOCKS_VISIBLE'] -%}
|
|
|
|
<li class="nav-item">
|
2023-01-22 23:36:06 +00:00
|
|
|
<a class="nav-link{% if request.path == '/blocks' %} active{% endif %}" href="/blocks"><i class="fas fa-eye-slash pr-2"></i>Blocks</a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
{%- endif %}
|
|
|
|
<li class="nav-item">
|
2023-04-29 16:31:51 +00:00
|
|
|
<a class="nav-link" href="https://rdrama.net/post/165657"><i class="fas fa-clipboard pr-2"></i>Changelog</a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2022-05-04 23:09:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-11-29 23:54:20 +00:00
|
|
|
<div class="container-fluid bg-white sticky d-md-none" style="padding-top: 20px; padding-bottom: 0">
|
2022-09-29 10:18:27 +00:00
|
|
|
<div class="row box-shadow-bottom">
|
|
|
|
<div class="col px-0">
|
|
|
|
<div class="d-flex flex-row-reverse justify-content-center">
|
|
|
|
<ul class="nav settings-nav">
|
|
|
|
<li class="nav-item">
|
2023-01-01 11:58:39 +00:00
|
|
|
<a style="padding: 0.75rem 1rem" class="nav-link{% if request.path == '/leaderboard' %} active{% endif %}" href="/leaderboard"><i class="fas fa-trophy text-lg mr-0"></i></a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2023-01-01 11:58:39 +00:00
|
|
|
<a style="padding: 0.75rem 1rem" class="nav-link{% if request.path == '/admins' %} active{% endif %}" href="/admins"><i class="fas fa-crown text-lg mr-0"></i></a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2023-01-01 11:58:39 +00:00
|
|
|
<a style="padding: 0.75rem 1rem" class="nav-link{% if request.path == '/log' %} active{% endif %}" href="/log"><i class="fas fa-scroll-old text-lg mr-0"></i></a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2023-01-01 11:58:39 +00:00
|
|
|
<a style="padding: 0.75rem 1rem" class="nav-link{% if request.path == '/banned' %} active{% endif %}" href="/banned"><i class="fas fa-user-slash text-lg mr-0"></i></a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2023-01-01 11:58:39 +00:00
|
|
|
<a style="padding: 0.75rem 1rem" class="nav-link{% if request.path == '/blocks' %} active{% endif %}" href="/blocks"><i class="fas fa-eye-slash text-lg mr-0"></i></a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2023-04-29 16:31:51 +00:00
|
|
|
<a style="padding: 0.75rem 1rem" class="nav-link" href="https://rdrama.net/post/165657"><i class="fas fa-clipboard text-lg mr-0"></i></a>
|
2022-09-29 10:18:27 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2022-05-04 23:09:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-29 10:18:27 +00:00
|
|
|
{% endif %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2022-12-10 08:23:56 +00:00
|
|
|
<div class="pt-3 container">
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block content %}{% endblock %}
|
2022-05-04 23:09:46 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2022-12-05 03:03:10 +00:00
|
|
|
|
2023-01-20 07:14:59 +00:00
|
|
|
<div class="toast clipboard" id="toast-clipboard-success" data-bs-animation="true" data-bs-autohide="true" data-bs-delay="5000">
|
2022-05-04 23:09:46 +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>
|
|
|
|
|
2023-01-20 07:14:59 +00:00
|
|
|
<div class="toast clipboard" id="toast-clipboard-error" data-bs-animation="true" data-bs-autohide="true" data-bs-delay="5000">
|
2022-05-04 23:09:46 +00:00
|
|
|
<div class="toast-body text-center">
|
|
|
|
<i class="fas fa-exclamation-circle mr-2"></i>Unable to copy link
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-01-24 10:40:10 +00:00
|
|
|
<div class="toast" id="toast-post-success" style="position: fixed; bottom: 1.5rem; margin: 0 auto; left: 0; right: 0; width: 275px; z-index: 100000" data-bs-animation="true" data-bs-autohide="true" data-bs-delay="5000">
|
2022-05-04 23:09:46 +00:00
|
|
|
<div class="toast-body bg-success text-center text-white">
|
|
|
|
<i class="fas fa-comment-alt-smile mr-2"></i><span id="toast-post-success-text">Action successful!</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-24 10:40:10 +00:00
|
|
|
<div class="toast" id="toast-post-error" style="position: fixed; bottom: 1.5rem; margin: 0 auto; left: 0; right: 0; width: 275px; z-index: 100000" data-bs-animation="true" data-bs-autohide="true" data-bs-delay="5000">
|
2022-05-04 23:09:46 +00:00
|
|
|
<div class="toast-body bg-danger text-center text-white">
|
|
|
|
<i class="fas fa-exclamation-circle mr-2"></i><span id="toast-post-error-text">Error, please try again later.</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block mobilenavbar %}{% include "mobile_navigation_bar.html" %}{% endblock %}
|
|
|
|
{% block scripts %}{% endblock %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% endblock %}
|