rDrama/files/templates/admin/admin_home.html

50 lines
1.3 KiB
HTML
Raw Normal View History

2021-07-21 01:12:26 +00:00
{% extends "default.html" %}
{% block title %}
2021-08-19 05:14:52 +00:00
<title>{{'SITE_NAME' | app_config}}</title>
<meta name="description" content="{{'SITE_NAME' | app_config}} Help">
2021-07-21 01:12:26 +00:00
{% endblock %}
{% block content %}
<pre></pre>
<pre></pre>
2021-09-09 11:02:06 +00:00
<h3>&nbsp;Admin Tools</h3>
2021-07-21 01:12:26 +00:00
{% filter markdown %}
2021-09-09 11:02:06 +00:00
#### Content
2021-09-12 06:41:19 +00:00
* [Reported Posts](/admin/reported/posts)
* [Reported Comments](/admin/reported/comments)
2021-07-21 01:12:26 +00:00
* [Image Posts](/admin/image_posts)
* [Removed Posts](/admin/removed)
2021-09-09 11:02:06 +00:00
#### Users
* [Shadowbanned Users](/admin/shadowbanned)
* [Users with Agendaposter Theme](/admin/agendaposters)
2021-07-21 01:12:26 +00:00
* [Users Feed](/admin/users)
2021-09-09 11:02:06 +00:00
#### Safety
* [Banned Domains](/admin/banned_domains)
2021-07-21 01:12:26 +00:00
* [Perceptive Hash Image Ban](/admin/image_ban)
* [Multi Vote Analysis](/admin/alt_votes)
2021-09-09 11:02:06 +00:00
#### Grant
* [Give User Award](/admin/user_award)
2021-07-21 01:12:26 +00:00
* [Badges](/admin/badge_grant)
2021-09-09 11:02:06 +00:00
#### API Access Control
* [Apps](/admin/apps)
#### Statistics
* [Content Stats](/stats)
2021-09-10 03:33:36 +00:00
* [Stat Chart](/chart)
2021-09-09 11:02:06 +00:00
#### Configuration
* [Site Rules](/admin/rules)
2021-07-21 01:12:26 +00:00
{% endfilter %}
2021-07-26 18:57:00 +00:00
<div class="custom-control custom-switch">
2021-09-12 04:49:51 +00:00
<input type="checkbox" class="custom-control-input" id="disablesignups" name="disablesignups" {% if x == "yes" %}checked{% endif %} onchange="post_toast('/admin/disablesignups');">
<label class="custom-control-label" for="disablesignups">Disable signups</label>
2021-07-26 18:57:00 +00:00
</div>
2021-07-21 01:12:26 +00:00
{% endblock %}