{% load static %} {% load i18n %} {% if item.dataformat == "string" %} {{ item.value|default:'' }} {% elif item.dataformat == "boolean" %}
{% if item.value %} {% else %}{% endif %}
{% elif item.dataformat == "int" %} {{ item.value|default:'' }} {% elif item.dataformat == "float" %} {{ item.value|default:'' }} {% elif item.dataformat == "group" %}
{% for z in item.value %} {{ z }}{% endfor %}
{% elif item.dataformat == "user" %}
{% for z in item.value %} {{ z.key }} ({{ z.display }}){% endfor %}
{% elif item.dataformat == "schema" %}
{% for z in item.value %} {{ z.display }}{% endfor %}
{% elif item.dataformat == "enumerate" %}
{% for z in item.value %} {{ z.widget|safe }} {% endfor %}
{% else %} {{ item.value|default:'' }} {% endif %}