{% load model_filters %}

{{ title|default_if_none:instance }}

{% for name, label, value, is_list in fields %}
{% if not is_list and value != None %} {{ label|capfirst }} {% spaceless %} {% if value.get_absolute_url %} {{ value }} {% else %} {{ value }} {% endif %} {% endspaceless %} {% endif %} {% if is_list and value.all|length %} {{ value.all|as_list_html:label|capfirst }} {% endif %}
{% endfor %}