summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/sheet_json.html
blob: 6aaf4bae76c1baf665b340e07e67b4b02a0a2531 (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 %}
{% endfor %}
{% endfor %}