{% extends "base.html" %} {% block title %} {% if dato %} {{ dato.titulo_trad or dato.titulo_orig or 'Detalle de Noticia' }} {% else %} Detalle de Noticia {% endif %} {% endblock %} {% block content %} {% set d = dato %} {% if not d %}

No se encontró la noticia solicitada.

{% else %}

{{ d.titulo_trad or d.titulo_orig }} {% if d.lang_to %} {{ d.lang_to|upper }} {% endif %}

{% if d.url %}
Ver fuente
{% endif %}
{% set fecha_ = d.fecha %} {% if fecha_ %} {% if fecha_ is string %} {{ fecha_ }} {% else %} {{ fecha_.strftime('%d-%m-%Y %H:%M') }} {% endif %} {% endif %} {% if d.fuente_nombre %} | {{ d.fuente_nombre }}{% endif %} {% if d.categoria %} | {{ d.categoria }}{% endif %} {% if d.pais %} | {{ d.pais }}{% endif %}
{% if d.imagen_url %}
Imagen de la noticia
{% endif %} {% if d.resumen_trad %}

Resumen (traducido)

{{ d.resumen_trad|safe_html }}

{% endif %} {% if d.resumen_orig %}

Resumen (original)

{{ d.resumen_orig|safe_html }}
{% endif %} {% if tags and tags|length %}
{% for t in tags %} {{ t.valor }} {% endfor %}
{% endif %}
{% if relacionadas and relacionadas|length %}

Noticias relacionadas

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