summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/sheet_json.html
blob: df9340c6f3fc17ef7646fd05f617ed0c7b61a250 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% 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 %}
{% empty %}
{% trans "No data" %}
{% endfor %}
{% endfor %}