{% 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/books_header.html' %}

{% for shelf in shelves %}

{% if shelf.name == 'To Read' %}{% trans "To Read" %} {% elif shelf.name == 'Currently Reading' %}{% trans "Currently Reading" %} {% elif shelf.name == 'Read' %}{% trans "Read" %} {% elif shelf.name == 'Stopped Reading' %}{% trans "Stopped Reading" %} {% else %}{{ shelf.name }}{% endif %} {% if shelf.size > 4 %}({% blocktrans with size=shelf.size %}View all {{ size }}{% endblocktrans %}){% endif %}

{% endfor %}
{% trans "View all books" %}
{% endif %} {% if goal %}
{% now 'Y' as current_year%}

{% blocktrans %}{{ current_year }} Reading Goal{% endblocktrans %}

{% 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 %} {% block scripts %} {% if request.user.show_guided_tour %} {% include 'guided_tour/user_profile.html' %} {% endif %} {% endblock %}