{% extends "base.html" %} {% block title %}Timeline: {{ conflict.name }}{% endblock %} {% block content %}

Timeline: {{ conflict.name }}

{{ noticias|length }} eventos

Keywords: {{ conflict.keywords }}

{% if not noticias %}

No se encontraron noticias recientes con las palabras clave especificadas.

{% else %}
{% for n in noticias %}
{% if n.fecha %} {{ n.fecha.strftime('%d') }} {{ n.fecha.strftime('%b') }} {{ n.fecha.strftime('%Y') }} {% endif %}
{% if n.imagen_url %}
{% endif %}

{{ n.titulo }}

{{ n.fuente_nombre }} {% if n.pais %}| {{ n.pais }}{% endif %}

{{ (n.resumen or '') | safe_html | truncate(150) }}

{% endfor %}
{% endif %} {% endblock %}