{% if detail_structure is defined and detail_structure|length > 0 %}
{% endif %}
{% if false %}
{% for block in detail_structure %}
{{block.label|trans}}
{% for fieldname in block.fields %}
{{fieldname|trans}}:{{record[fieldname]|trans}}
{% endfor %}
{% endfor %}
{% else %}
{% for block,fields in modlayout %}
{% set totvisiblefields = '0' %}
{% for fieldname in fields %}
{% if record[fieldname] is defined %}
{% set totvisiblefields = totvisiblefields + 1%}
{% endif %}
{% endfor %}
{% if totvisiblefields > 0 %}