{% if column.is_foreign_key %} {% if links %} {{ attribute(record, column.get_name~'FKTITLE') }} {% else %} {{ attribute(record, column.get_name~'FKTITLE') }} {% endif %} {% elseif column.is_boolean %} {% if attribute(record, column.get_name) is sameas(true) %} Yes {% elseif attribute(record, column.get_name) is sameas(false) %} No {% else %} {% endif %} {% elseif column.get_type=='date' and attribute(record, column.get_name) != '0000-00-00' %} {{ attribute(record, column.get_name)|wp_date_format }} {% elseif column.get_type=='time' %} {{ attribute(record, column.get_name) }} {% elseif column.get_type=='point' %} {{ attribute(record, column.get_name) }} {% else %} {{ attribute(record, column.get_name) }} {% endif %}