{% extends "base.html" %} {% block title %}managing bookmark collections{% endblock %} {% block content %}

Manage bookmark collections

Drag collections to reoder them. You cannot move or remove the default collection, but you can rename it.

{% for collection in collections | sort(attribute='sort_order') %}

{{ collection.get_threads_count() }} {{ "thread" | pluralize(num=collection.get_threads_count()) }}, {{ collection.get_posts_count() }} {{ "post" | pluralize(num=collection.get_posts_count()) }}
{% if collection.is_default %} Default collection {% else %} {% endif %}
{% endfor %}
{% endblock %}