{% if n.fecha %}
{% if n.fecha is string %}{{ n.fecha }}{% else %}{{ n.fecha.strftime('%d-%m-%Y %H:%M') }}{% endif %}
{% else %}N/D{% endif %}
{% if n.fuente_nombre %} | {{ n.fuente_nombre }}{% endif %}
{% if n.categoria %} | {{ n.categoria }}{% endif %}
{% if n.pais %} | {{ n.pais }}{% endif %}
{% set resumen_txt = (n.resumen_traducido or n.resumen) | safe_html %}
{{ resumen_txt | truncate(280, True) }}
{{ resumen_txt }}
{% if (n.resumen_traducido or n.resumen) and (n.resumen_traducido or n.resumen)|length > 280 %}
{% endif %}
{# === Chips de tags para la TRADUCCIÓN (si existen) === #}
{% set chips = (tags_por_trad.get(n.traduccion_id) if (n.traduccion_id and tags_por_trad) else None) %}
{% if chips %}
{% for valor, tipo in chips %}
{{ valor }}
{% endfor %}