{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "Coleção de Peixes" %}{% endblock %} {% block extrastyle %} {% endblock %} {% block content %}

🏆 {% trans "Coleção de Peixes" %}

{% trans "Progresso da Coleção" %}

{% trans "Você capturou" %} {{ caught_count }} {% trans "de" %} {{ total_fish }} {% trans "peixes disponíveis" %}

{{ collection_percentage }}%
{% for item in fish_collection %}
{% if item.caught and item.catch_count > 0 %}
{{ item.catch_count }}
{% endif %}
{% if item.caught %} {% if item.fish.image %} {{ item.fish.name }} {% else %} {{ item.fish.icon }} {% endif %} {% else %} ❓ {% endif %}
{% if item.caught %} {{ item.fish.name }} {% else %} ??? {% endif %}
{{ item.fish.get_rarity_display|upper }}
{% if not item.caught %}
{% trans "Não Capturado" %}
{% endif %}
{% endfor %}
🎣 {% trans "Voltar para Pescar" %}
{% endblock %}