{% extends "mod_base.html" %} {% block title %}Modify board{% endblock %} {% import "widget/dynamic_config.html" as dynamic_config_widget %} {% block content %}

Modify board

[Back] [View log]

Changing board {{ board.name }}

{{ dynamic_config_widget.render(board_config, url_for('.mod_board', board_name=board.name)) }}

Modify the roles of the moderators of the board.
Creator The creator of the board.
Full permission Can change the roles of other moderators.
Janitor Manage reports, remove posts, request bans.
Config Change the board configuration.

{% for board_moderator in board_moderators %} {% endfor %}
Name Roles
{{ board_moderator.moderator.username }}
{{ csrf_html() }} {% for board_role in all_board_roles %}
{% endfor %}
{{ csrf_html() }}


Invite moderators

{{ csrf_html() }}



{% if can_delete %}
{{ csrf_html() }}
This will permanently delete the whole board!
{% endif %} {% endblock %}