13 lines
414 B
HTML
13 lines
414 B
HTML
{% extends "base.html" %}
|
|
{% block title %}moderation{% endblock %}
|
|
{% block content %}
|
|
<div class="darkbg settings-container">
|
|
<h1>Moderation actions</h1>
|
|
<ul>
|
|
<li><a href="{{ url_for('mod.user_list') }}">User list</a></li>
|
|
<li><a href="{{ url_for('mod.sort_topics') }}">Sort topics</a></li>
|
|
<li><a href="{{ url_for('mod.motd_editor') }}">Message of the Day</a></li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|