{% set container_style = schema.get('style') %}
{% include "objects/table_property_label.html" %} | {% endwith %} {% if data is not none %} {% for item in data %}
{% set is_required = property_name in schema['items'].get('required', ()) %}
{% set schema = schema['items'].properties[property_name] %}
{% if property_name in item %}
{% set data = item[property_name] %}
{% else %}
{% set data = none %}
{% endif %}
{% set entry_index = loop.index0 %}
{% set property_path = property_path + (loop.index0, property_name,) %}
{% set id_prefix = id_prefix_for_property_path(property_path, id_prefix_root) %}
{% if 'conditions' in schema %}
{% include "objects/inline_edit/inline_edit_any.html" %}
—
{% else %}
{% include "objects/inline_edit/inline_edit_any.html" %}
{% endif %}
|
{% endfor %}
{% endif %}
---|
{{ _('Unsupported item type for horizontal_table style.') }}
{% endif %}