← {% if user.is_authenticated %}{% trans "Collections" %}{% else %}Start{% endif %}
{% if can_edit %}{% trans "Edit collection" %}{% endif %}
{{ collection.title }}
{% if collection.mode == 'tags' %}{% trans "Tag collection" %}{% endif %}
{% if collection.team %}{{ collection.team.name }}{% else %}{{ collection.get_visibility_display }}{% endif %}
{% for tag in collection.filter_tags.all %}#{{ tag.name }}{% endfor %}
{{ collection.description|markdown }}
{% endif %}
{% if collection.mode == 'tags' %}
{% for item in tag_items %}{{ item|collection_item_markdown }}{% if item.comment %} {% empty %}
{{ item.comment|markdown }}
{% endif %}{% trans "No notes match the selected tags yet." %}
{% endfor %}
{% else %}
{% for section in sections %}{% include 'core/_collection_section_read.html' with section=section %}{% empty %}{% trans "This collection has no sections yet." %}
{% endfor %}
{% endif %}