{% extends 'core/_base.html' %} {% block nav %} {% include "core/_nav.html" with location='aggregated_feed' %} {% endblock nav %} {% block content %}
{% for aggregated_activity in feed_pins %}
{{ aggregated_activity.updated_at|timesince }} ago
{{ aggregated_activity.last_activities|length }} pins {# DEBUG {{ activity }} Group: {{ aggregated_activity.group }} #}
{% for activity in aggregated_activity.last_activities %} {% with activity.pin as pin %}
{% if pin.message %}
{{ pin.message }}
{% endif %}
{% csrf_token %}
in
{% endwith %} {% endfor %}
{% endfor %}
{% endblock content %}