{% load bootstrap %} {% load i18n %}
  • {{ board.board_obj.name }}

    {% translate "Changing the name of this board does not change its URL part. This will remain the same to not break any possible links into this board." %}

    {% csrf_token %} {{ board.board_forms.board_edit_form.name|bootstrap }} {{ board.board_forms.board_edit_form.description|bootstrap }} {{ board.board_forms.board_edit_form.discord_webhook|bootstrap }} {{ board.board_forms.board_edit_form.use_webhook_for_replies|bootstrap }} {% if not is_child_board %} {{ board.board_forms.board_edit_form.groups|bootstrap }} {% endif %}
    {% if not is_child_board %}

    {% translate "New boards will be added at the bottom of the board list for this category. You can move them via drag and drop to a position of your liking." %}

    {% csrf_token %} {{ board.board_forms.new_child_board_form.name|bootstrap }} {{ board.board_forms.new_child_board_form.description|bootstrap }} {{ board.board_forms.new_child_board_form.discord_webhook|bootstrap }} {{ board.board_forms.new_child_board_form.use_webhook_for_replies|bootstrap }}
    {% if board.child_boards %} {% endif %}
    {% endif %} {% include "aa_forum/modals/administration/delete-board.html" with board=board.board_obj %}