{% extends "_layout.html" %} {% load i18n gravatar socialaccount %} {% block js_views %}{{ block.super }},relation{% endblock %} {% block main_content %}

{{ this_user.username }}
{{ stats.figures_count }}
{% trans 'Figures' %}
{{ stats.cards_count }}
{% trans 'Cards' %}

{% if user.is_authenticated %} {% get_social_accounts this_user as accounts %} {% if accounts %}

{% trans "Contact me in:" %}

{% for provider, profiles in accounts.items %} {% for profile in profiles %} {% endfor %} {% endfor %}
{% endif %} {% endif %}
{% if user.pk == this_user.pk %}
{% trans "Want everyone to see your collection? Spread the word!" %}
{% endif %}
{% if amiibo_list %}
{% for amiibo in amiibo_list %} {% include "amiibo/widgets/amiibo-card.html" with amiibo=amiibo %} {% endfor %}
{% else %}
{% trans "Oooops, seems this user have nothing for that." %}
{% endif %}
{% endblock %}