fsdfs
This commit is contained in:
parent
dcbf6753e9
commit
e5996faf49
2 changed files with 24 additions and 0 deletions
|
@ -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):
|
||||
|
|
18
files/templates/modlog.html
Normal file
18
files/templates/modlog.html
Normal 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue