{% load i18n %} {% load attribute %} {% for attribute, values in attribute_values_list %}
{% include "includes/attribute-label.html" with attribute=attribute only %}
{% if attribute.multi_value %} {% for value in values %}
{% include "includes/attribute-input.html" with attribute=attribute value=value is_admin=is_admin new_resource=new_resource only %}
{% empty %}
{% include "includes/attribute-input.html" with attribute=attribute value="" is_admin=is_admin new_resource=new_resource only %}
{% endfor %}
{% trans 'Add Input' %}
{% else %} {% include "includes/attribute-input.html" with attribute=attribute value=values.0 is_admin=is_admin new_resource=new_resource only %} {% endif %} {% translate_description attribute as description %} {% if description %}

{{ description }}

{% endif %}
{% endfor %}