{% load formsets %} {% load i18n %} {% load static %}
{{ formset.management_form }} {{ formset.non_form_errors }}
{% if can_edit and size_warning %}
{% translate "Resources will be publicly visible unless marked as private." %} {{ size_warning }}
{% endif %} {% for form in formset %}
{{ form.id }} {{ form.DELETE }}
{% include "common/forms/errors.html" %} {% if not form.errors and form.instance.pk %}
{{ form.description.as_field_group }}
{% if form.instance.link %} {{ form.link.as_field_group }} {% else %} {% endif %}
{{ form.is_public.as_field_group }}
{% if can_edit %}
{% endif %}
{% else %} {% include "cfp/includes/_resource_row.html" %} {% endif %}
{% empty %}
{% translate "This proposal has no resources yet." %}
{% endfor %}
{% if can_edit %} {% if permission_action != "view" %}
{% endif %} {% endif %}