{% set container_style = schema.get('style') %}
{% set show_title = ((show_object_title is none and config['SHOW_OBJECT_TITLE']) or show_object_title) and schema.title %}
{% if show_title or container_style in ("collapsible", "expandable") %}
{% if container_style in ("collapsible", "expandable") %}
{% endif %}
{% if show_title %}
{{ schema.title | get_translated_text }}
{% endif %}
{% set show_indent_border = True %}
{% set property_names = get_property_names_in_order(schema) %}
{% for property_name in property_names %}
{% set hidden = 'show_more' in schema.keys() and property_name in schema['show_more'] %}
{% set is_required = property_name in schema.get('required', ()) %}
{% set schema = schema.properties[property_name] %}
{% set parent_id_prefix = id_prefix %}
{% set property_path = property_path + (property_name,) %}
{% set id_prefix = id_prefix_for_property_path(property_path, id_prefix_root) %}
{% if data is not none and property_name in data %}
{% set data = data[property_name] %}
{% else %}
{% set data = none %}
{% endif %}
{% if 'conditions' in schema %}
{% include "objects/inline_edit/inline_edit_any.html" %}
{% else %}
{% include "objects/inline_edit/inline_edit_any.html" %}
{% endif %}
{% endfor %}
{% if schema.get("show_more") %}