← {% if user.is_authenticated %}{% trans "Collections" %}{% else %}Start{% endif %}
{% if can_edit %}{% trans "Edit collection" %}{% endif %}
{{ collection.title }}
{% if collection.team %}{{ collection.team.name }}{% else %}{{ collection.get_visibility_display }}{% endif %}
{% for tag in collection.tags.all %}#{{ tag.name }}{% endfor %}
{{ collection.description|markdown }}
{% endif %}
{% for section in sections %}
{% if section.title %}
{% empty %}
{{ section.title }}
{% endif %} {{ section.item|item_markdown }} {% if section.item.comment %}{{ section.item.comment|markdown }}
{% endif %}
{% trans "This collection has no sections yet." %}
{% endfor %}