{% extends 'feed/feed_layout.html' %} {% load i18n %} {% load bookwyrm_tags %} {% block panel %}

{% blocktrans %}{{ tab_title }} Timeline{% endblocktrans %}

{# announcements and system messages #} {% if not goal and tab == 'home' %} {% now 'Y' as year %} {% endif %} {# activity feed #} {% if not activities %}

{% trans "There aren't any activities right now! Try following a user to get started" %}

{% endif %} {% for activity in activities %}
{% include 'snippets/status/status.html' with status=activity %}
{% endfor %} {% endblock %}