{% extends "base.html" %} {% block title %} {{ dato.titulo_trad or dato.titulo_orig or 'Detalle de Noticia' }} {% 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 %}
{% if d.fecha %} {% if d.fecha is string %} {{ d.fecha }} {% else %} {{ d.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 %}
{% 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 %}
{% for t in tags %} {{ t.valor }} {% endfor %}
{% endif %}
{% if relacionadas %}

Noticias relacionadas

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