{% extends "base.html" %}
{% load activity_tags %}
{% block title %}Activity{% if timeline_for %} for {{ timeline_for }}{% endif %}{% endblock %}
{% block content %}
{% for k, v in actions.items %}
{% if v.actor_count < 4 %}
{{ v.actors|join_and }}
{% else %}
{{ v.actors.0 }} and {{ v.actor_count }} others
{% endif %}
{{ v.verb }}
{{ k }}
{% endfor %}
{% endblock %}