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

{{ heading }}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.title }}{{ form.title.errors }}
{{ form.description }}{{ form.description.errors }}
{{ form.mode }}{{ form.mode.errors }}
{% trans "Tag collections update automatically and are sorted by note creation time." %}
{{ form.visibility }}{{ form.visibility.errors }}
{{ form.team }}{{ form.team.errors }}
{% trans "Optional. Selecting a team makes the collection visible and editable for that team." %}
{% if form.filter_tags.field.queryset.exists %}{{ form.filter_tags }}{% else %}{% trans "No content tags are available yet." %}{% endif %}
{{ form.filter_tags.errors }}
{% trans "Notes must contain all selected tags. Team tags are not content filters." %}
{% trans "Cancel" %}
{% endblock %}