{% load helpers %}
{% if property.value is not None and property.value != "" %}
{% if property.value.get_absolute_url %}
{{ property.value }}
{% elif property.value is True %}
{% elif property.value is False %}
{% else %}
{{ property.value }}
{% endif %}
{% else %}
{{ default | placeholder }}
{% endif %}
{% if property.inherited %}
{{ property.source }}
{% endif %}