{% if object.name %}{{ object.name }}{% endif %}
{{ object.parentnode.long_name }}
{{ object.parentnode.parentnode.long_name }}
{{ object.parentnode.parentnode.parentnode.long_name }}
{{ object.parentnode.get_path }}

{% for candidate in object.candidates.all %}
{% if not object.parentnode.anonymous %}
    {% include "search/indexes/core/format_user.django.txt" with user=candidate.student only %}
{% endif %}
{% if candidate.candidate_id %}{{ candidate.candidate_id }}{% endif %}
{% endfor %}

{% if not object.parentnode.anonymous %}
{% for examiner in object.examiners.all %}
    {% include "search/indexes/core/format_user.django.txt" with user=examiner.user only %}
{% endfor %}
{% endif %}