{% macro boolean(id,value) %} {% endmacro %} {% macro checkbox(id,options, value) %} {% if options is string %} {% set options = options|from_json %} {% for label, checkvalue in options.items() %}
{% endfor %} {% endif %} {% endmacro %} {% macro radio(id,options, value) %} {% for label, checkvalue in options.items() %}
{% endfor %} {% endmacro %} {% macro money(id, value) %}

{% if value %}{{ value | money_format }}{% endif %}

{% endmacro %} {% macro number(id, value) %}

{% if value %}{{ value }}{% endif %}

{% endmacro %} {% macro integer(id, value) %}

{% if value %}{{ value }}{% endif %}

{% endmacro %} {% macro textarea(id, value) %}
{% if value %}{{ value | safe}} {% endif %}
{% endmacro %} {% macro select(id,options,value) %} {% if options is string %} {% set options = options|from_json %} {% for label, valueOption in options.items() %} {% if value == valueOption %}

{{ label }}

{% endif %} {% endfor %} {% endif %} {% endmacro %} {% macro connected_table(id, connected_table, value) %} {% if value %} {{ value }} {% endif %} {% endmacro %} {% macro treeView(id, connected_table, value) %}
{% for tag in value %} {{ tag.name }} , {% endfor %}
{% endmacro %} {% macro tagsInput(id, connected_table, value) %}
{% for tag in value %} {{ tag.name }} , {% endfor %}
{% endmacro %} {% macro date(id,value) %}

{% if value %} {{ value.strftime('%d/%m/%Y') }} {% endif %}

{% endmacro %} {% macro incompletedate(id,value) %}

{% if value %} {%set format = value | format_incomplete_date%} {{format[2]}}/{{format[1]}}/{{format[0]}} {% endif %}

{% endmacro %} {% macro image(id, value) %} {% if value%} open_in_new {% endif %} {% endmacro %} {% macro imageExport(id, value) %} {% if value%} {% endif %} {% endmacro %} {% macro blob(id, value) %} {% if value%} open_in_new {% endif %} {% endmacro %} {% macro email(id, value) %}

{% if value %}{{ value }}{% endif %}

{% endmacro %} {% macro default(id, value) %}

{% if value %}{{ value }}{% endif %}

{% endmacro %}