{% extends "base.html" %} {% block title %}Resumen Diario - {{ current_date.strftime('%d/%m/%Y') }}{% endblock %} {% block content %}
Anterior

Resumen Diario {{ current_date.strftime('%d/%m/%Y') }}

{% if next_date %} Siguiente {% else %} {% endif %}
{% if not noticias_by_cat %}

No hay noticias para este día

Prueba navegando a días anteriores.

{% else %}
{% for categoria, noticias in noticias_by_cat.items() %}

{{ categoria }}

Ver más de {{ categoria }}
{% endfor %}
{% endif %} {% endblock %}