{% macro translations_for(article) %}
{% if article.translations %}
{{ _('Traducciones:') }}
{% for translation in article.translations %}
{{ LANGUAGE_CODES[translation.lang] }}{% if not loop.last %},{% endif %}
{% endfor %}
{% endif %}
{% endmacro %}
{% macro entry_hreflang(entry) %}
{% if entry.translations %}
{% for translation in entry.translations %}
{% endfor %}
{% endif %}
{% endmacro %}