{% extends 'user/layout.html' %} {% load i18n %} {% load utilities %} {% block title %}{{ user.display_name }}{% endblock %} {% block header %}

{% trans "User Profile" %}

{% if is_self %}
{% trans "Edit profile" %}
{% endif %}
{% endblock %} {% block panel %} {% if user.bookwyrm_user %}

{% include 'user/shelf/books_header.html' %}

{% for shelf in shelves %} {% endfor %}
{% trans "View all books" %}
{% endif %} {% if goal %}

{% now 'Y' %} Reading Goal

{% include 'snippets/goal_progress.html' with goal=goal %}
{% endif %}

{% trans "User Activity" %}

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

{% trans "No activities yet!" %}

{% endif %} {% include 'snippets/pagination.html' with page=activities path=user.local_path anchor="#feed" %}
{% endblock %}