{% extends "aggregator/base.html" %} {% block head %} {% endblock %} {% block menu %}
{% for feed in feeds %} {{ feed.name }} {% endfor %}
{% endblock %} {% block content %} {% regroup list.object_list by updated.date as grouped_list %} {% for group in grouped_list %}

{{ group.grouper }}

{% for post in group.list %} {% include "aggregator/post_content.html" %} {% endfor %} {% endfor %}
{% if list.has_previous %} {% endif %} {% if list.has_next %} {% endif %}
{{ list.number }} / {{ list.paginator.num_pages }}
{% endblock %}