{% for translation in translations %}
{% if loop.index > 1 %}
{% endif %}
{{ translation.text }}
{% if translation.transliteration %}
translation.transliteration
{% endif %} {% if translation.definitions %}
- {{ _('Definitions') }}
{% for definition in translation.definitions %}
- {{ definition }}
{% endfor %}
{% endif %} {% if translation.examples %}
- {{ _('Examples') }}
{% for example in translation.examples %}
- {{ example }}
{% endfor %}
{% endif %} {% if translation.synonyms %}
- {{ _('Synonyms') }}
{% for synonym in translation.synonyms %}
- {{ synonym }}
{% endfor %}
{% endif %}
{% endfor %}