{% extends 'base.html' %} {% load i18n %} {% block extra_css %} {# Select2 CSS now loaded globally from vendor in base.html #} {% endblock %} {% block content %}
{% trans "Back to Collections" %}

{% if form.instance.pk %} {% trans "Edit Collection" %} {% else %} {% trans "New Collection" %} {% endif %}

{% csrf_token %}
{% if form.name.errors %}

{{ form.name.errors.0 }}

{% endif %}
{% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}
{{ form.tags }}
{% if form.tags.errors %}

{{ form.tags.errors.0 }}

{% endif %}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {# jQuery and Select2 are loaded globally from vendor in base.html #} {% endblock %}