blob: 8927eb057b4a0d358755fbf1db414815d8385cbd (
plain)
1
2
3
4
5
6
7
8
9
|
{% load i18n window_field %}
{% for json_section, json_fields in item.json_sections %}
<h3>{% if json_section %}{{json_section}}{% else %}{% trans "Data" %}{% endif %}</h3>
{% for label, value in json_fields %}
{% if forloop.first %}<div class='row'>{% endif %}
{% field_flex label value %}
{% if forloop.last %}</div>{% endif %}
{% endfor %}
{% endfor %}
|