{% extends 'base.html' %}


{% block content %}
Activities ({{ quantity }})

{% for activity in activity_list %} {% endfor %}
Type Actor When Description
{{ activity.type }} {% for actor in activity.actor.all %} {{ actor.name }}
{% endfor %}
{{ activity.when|date }} {{ activity.description }}
Filter
{% csrf_token %}

Clear
{% endblock %}