{% load i18n %} {% load attribute %} {% for attribute, values in attribute_values_list %}
{% include "includes/attribute-label.html" with attribute=attribute only %}
{% if attribute.multi_value %} {% include "includes/attribute-input-multivalue.html" with attribute=attribute values=values is_admin=is_admin new_resource=new_resource only %} {% 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 %}