{% load bootstrap %} {% load i18n %}
  • {{ category.category_obj.name }}

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

    {% csrf_token %} {{ category.category_forms.edit_category|bootstrap }}

    {% 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 %} {{ category.category_forms.new_board|bootstrap }}
    {% if category.boards %}
      {% for board in category.boards %} {% include "aa_forum/partials/administration/board-loop.html" %} {% endfor %}
    {% endif %}
    {% include "aa_forum/modals/administration/delete-category.html" with category=category.category_obj %}