{% extends '_layout.html'|pjax:request %} {% load i18n %} {% block page_title %}{{ block.super }} | {{ item.username }} | {% trans "Profile" %}{% endblock %} {% block main_content %}

{{ item.username }}

{% if item.is_staff %} STAFF {% endif %}
{% trans "Summary" %} {% if item.have_volumes.count > 0 %} {% trans "Collection" %} {% endif %} {% if item.wishlisted_volumes.count > 0 %} {% trans "Wishlist" %} {% endif %} {% comment %} {% trans "Achievements" %} {% endcomment %}
{% if request.user.pk == item.pk %} {% trans "Edit my profile" %} {% endif %}
{% block profile_content %} {% include "users/profile/summary.html" %} {% endblock %}
{% endblock %}