{% extends 'core/base.html' %} {% load i18n markdown_extras %} {% block content %}
← {% if user.is_authenticated %}{% trans "Collections" %}{% else %}Start{% endif %}

{{ collection.title }}

{% if collection.mode != 'manual' %}{{ collection.get_mode_display }}{% endif %} {% if collection.team %}{{ collection.team.name }}{% else %}{{ collection.get_visibility_display }}{% endif %} {% for tag in collection.filter_tags.all %}#{{ tag.name }}{% endfor %}
{% if can_edit %}{% trans "Edit collection" %}{% endif %}
{% if collection.description %}
{{ collection.description|markdown }}
{% endif %}
{% if sections or tag_items %} {% endif %}
{% if collection.mode == 'tags' %} {% for item in tag_items %}
{{ item|collection_item_markdown }}{% if item.comment %}
{{ item.comment|markdown }}
{% endif %}
{% empty %}
{% trans "No entries match the selected tags and types 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 %}
{% endblock %}