{% load helpers %} {% load i18n %} {% if customfield.type == 'integer' and value is not None %} {{ value }} {% elif customfield.type == 'decimal' and value is not None %} {{ value }} {% elif customfield.type == 'longtext' and value %} {{ value|markdown }} {% elif customfield.type == 'boolean' and value == True %} {% checkmark value true="True" %} {% elif customfield.type == 'boolean' and value == False %} {% checkmark value false="False" %} {% elif customfield.type == 'date' and value %} {{ value|isodate }} {% elif customfield.type == 'datetime' and value %} {{ value|isodatetime }} {% elif customfield.type == 'url' and value %} {{ value|truncatechars:70 }} {% elif customfield.type == 'json' and value is not None %}
{{ value|json }}
{% elif customfield.type == 'select' and value %}
{% if color %}
{% badge value bg_color=color %}
{% else %}
{{ value }}
{% endif %}
{% elif customfield.type == 'multiselect' and value %}
{% if value_has_colors %}