summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/sheet_json.html
blob: 35b681d8e26c278877f06af0a9d80e92ebce1f7b (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 %}
{% if json_section %}<h3>{{json_section}}</h3>{% endif %}
{% 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 %}