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

{{ this_user.username }}
{% blocktrans with username=this_user.username trimmed %} Here you can browse over {{ username }}'s collection {% endblocktrans %}

{% 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 %}