forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-19 23:06:48 +02:00
parent ec3021704c
commit a439eeef8e
2 changed files with 24 additions and 0 deletions

View File

@ -90,6 +90,12 @@ def admins(v):
admins = g.db.query(User).options(lazyload('*')).filter_by(admin_level=6).order_by(User.coins.desc()).all()
return render_template("admins.html", v=v, admins=admins)
@app.get("/log")
@auth_desired
def log(v):
return render_template("modlog.html", v=v)
# @app.get("/log")
# @auth_desired
# def log(v):

View File

@ -0,0 +1,18 @@
{% extends "errors/default.html" %}
{% block title %}
<title>Log</title>
{% endblock %}
{% block pagetype %}Log{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-8">
<pre></pre>
<p class="text-muted mb-5">Hiding the modlog is unironically something we can't stand for. Transparent moderation is the only thing that makes this site any better from Reddit in regards to free speech while still not being retarded like Ruqqus.</p>
</div>
</div>
</div>
{% endblock %}