{% extends 'django_spire/glue/form/form.html' %} {% block glue_form_unique_name %}collection_form{% endblock %} {% block glue_form_content %}
{% include 'django_spire/glue/form/field/char/field.html' with glue_field='glue_form.name' %}
{% include 'django_spire/glue/form/field/text/field.html' with glue_field='glue_form.description' %}
{% if request.GET.top_level != 'True' %}
{% include 'django_spire/glue/form/field/choice/adaptive_field.html' with glue_field='glue_form.parent' include_empty=True empty_label='None' %}
{% endif %} {% if perms.django_spire_knowledge.can_change_collection_groups %}
{% include 'django_spire/glue/form/field/choice/adaptive_field.html' with glue_field='glue_form.groups' %}
{% endif %}
{% endblock %}