{% extends "base.html" %} {% from 'common/macros.html' import sortable_list, sortable_list_item %} {% block content %}

Change topics order

Drag topic titles to reoder them. Press "Save order" when done. The topics will appear to users in the order set here.

{% call() sortable_list() %} {% for topic in topics %} {% call() sortable_list_item(key="topics") %}
{{ topic.name }}
{{ topic.description }}
{% endcall %} {% endfor %} {% endcall %}
{% endblock %}