Title:{{ entry }}
{% with entry.tags.all as tags %}
{% if tags %}
Tags:
{% for tag in tags %}
{{ tag.title }}
{% endfor %}
{% endif %}
{% endwith %}
{% with entry.series.all as series %}
{% if series %}
Series:
{% for a_series in series %}
{{ a_series.title }}
{% endfor %}
{% endif %}
{% endwith %}
{% with entry.translation_set.all as translations %}
{% if translations %}
Translations:
{% for translation in translations %}{{ translation.get_link|safe }}{% endfor %}
{% endif %}
{% endwith %}
{% with entry.translated.all as translated %}
{% if translated %}
Translation of
{% for translation in translated %}{{ translation.original.title|safe }}in{{ translation.language }}{% endfor %}
{% endif %}
{% endwith %}