{% load helpers %} {% with custom_fields=object.get_custom_fields_by_group %} {% if custom_fields %}
{{ field }} |
{% if field.type == 'integer' and value is not None %}
{{ value }}
{% elif field.type == 'longtext' and value %}
{{ value|markdown }}
{% elif field.type == 'boolean' and value == True %}
{% checkmark value true="True" %}
{% elif field.type == 'boolean' and value == False %}
{% checkmark value false="False" %}
{% elif field.type == 'url' and value %}
{{ value|truncatechars:70 }}
{% elif field.type == 'json' and value %}
{{ value|json }}{% elif field.type == 'multiselect' and value %} {{ value|join:", " }} {% elif field.type == 'object' and value %} {{ value|linkify }} {% elif field.type == 'multiobject' and value %} {% for obj in value %} {{ obj|linkify }}{% if not forloop.last %} {% endif %} {% endfor %} {% elif value %} {{ value }} {% elif field.required %} Not defined {% else %} {{ ''|placeholder }} {% endif %} |