summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/sheet_json.html
blob: 31e6acb84a5405d16e9316c2bf22dc9966f03512 (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 %}<ul class='form-flex'>{% endif %}
    {% field_li label value %}
{% if forloop.last %}</ul>{% endif %}
{% endfor %}
{% endfor %}