{% extends 'core/base.html' %} {% load i18n %} {% block content %}

{% trans "Collections" %}

{% trans "Combine existing notes into ordered documents." %}

{% trans "New collection" %}
{% trans "All" %} {% trans "Manual collection" %} {% trans "Tutorial" %} {% trans "Tag collection" %} {% trans "Chapters" %}
{% if orphan_chapters %}
{% trans "Orphan chapters" %}
{% trans "These chapters are not used by any tutorial yet:" %} {% for chapter in orphan_chapters %}{{ chapter.title }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% endif %}
{% for entry in entries %}{% with collection=entry.collection %} {% endwith %}{% empty %}
{% trans "No collections yet." %}
{% endfor %}
{% endblock %}