{% extends 'layout.html' %} {% load i18n %} {% load utilities %} {% block title %}{% trans "Updates" %}{% endblock %} {% block content %} {% if user.moved_to %}

{% trans "You have have moved to" %} {% id_to_username user.moved_to %}

{% trans "You can undo this move to restore full functionality, but some followers may have already unfollowed this account." %}

{% csrf_token %}
{% else %}
{% if user.is_authenticated %}
{% include "feed/suggested_books.html" %} {% if goal %}

{% blocktrans with yar=goal.year %}{{ year }} Reading Goal{% endblocktrans %}

{% include 'snippets/goal_progress.html' with goal=goal %}
{% endif %}
{% endif %}
{% block panel %}{% endblock %} {% if activities %} {% include 'snippets/pagination.html' with page=activities path=path anchor="#feed" mode="chronological" %} {% endif %}
{% endif %} {% endblock %}