{% extends 'admin/base.html' -%} {% block content -%}

Query

⚠ Only use queries if you know what you're doing ⚠

Configuration

Name
Registrations enabled

Forums

{% for id, name, description, _, _, _ in forums %} {% endfor %}
ID Name Description Actions
{{ id }}
Remove

Add forum

Name
Description

Users

{%- for id, name, join_date, role, banned_until in users -%} {%- endfor -%}
ID Name Join date Role Banned until Actions
{{ id }} {{ name }} {{ format_time(join_date) }} {{ ['user', 'moderator', 'admin'][role] if role >= 0 and role <= 2 else role }} {{ '' if banned_until is none else format_time(banned_until) }}
{%- endblock %}