{% extends 'core/base.html' %} {% load i18n markdown_extras %} {% block content %}
{% trans "Collections are currently available on desktop only." %}
← {% trans "View collection" %}

{{ collection.title }}

{% 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 "Collection settings" %}{% if can_delete %}
{% csrf_token %}
{% endif %}
{% endif %}
{% if collection.description %}
{{ collection.description|markdown }}
{% endif %} {% if sections %}
{% trans "Contents" %}
    {% for section in sections %}
  1. {{ section.title|default:section.item.content|markdown_title|truncatechars:90 }}
  2. {% endfor %}
{% endif %} {% if pending_item %}

{% trans "The note has a different visibility" %}

{% trans "To add it, change its visibility or create a separate copy for this collection." %}

{{ pending_item.content|truncatechars:180 }}
{% if pending_can_convert %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{% trans "Cancel" %}
{% if not pending_can_convert %}
{% trans "The original cannot be changed because it is used elsewhere or you cannot edit it." %}
{% endif %}
{% endif %}
{% for section in sections %}

{{ section.title|default:section.item.content|markdown_title|truncatechars:100 }}

{{ section.item|item_markdown }}
{% if section.item.comment %}
{{ section.item.comment|markdown }}
{% endif %} {% if can_edit %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% endif %}
{% empty %}
{% trans "This collection has no sections yet." %}
{% endfor %}
{% if can_edit %}

{% trans "Add existing note" %}

{% for item in candidates %}
{{ item.content|truncatechars:180 }}
#{{ item.id }} · {{ item.get_visibility_display }}{% if item.team %} · {{ item.team.name }}{% endif %}
{% csrf_token %}
{% empty %}
{% trans "No matching notes." %}
{% endfor %}
{% endif %}
{% endblock %}