{% 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.visibility }}{{ form.visibility.errors }}
{% trans "Optional. Selecting a team makes the collection visible and editable for that team." %}
{% if form.tags.field.queryset.exists %}{{ form.tags }}{% else %}{% trans "You do not belong to a team." %}{% endif %}
{{ form.tags.errors }}
{% trans "Cancel" %}
{% endblock %}