{% extends "layouts/base.html" %} {% load static i18n get_item %} {% block extrastyle %} {% endblock extrastyle %} {% block content %}

{% trans "Tipos de Caixa Disponíveis" %}

{% trans "Seu Saldo" %}

R$ {{ user_balance }}
{% trans "Fichas" %}: {{ user_fichas }}
{% if box_types %}
{% for box_type in box_types %}
{{ box_type.name }}
{{ box_type.name }}

{% trans "Preço" %}: R$ {{ box_type.price }}
{% trans "Boosters" %}: {{ box_type.boosters_amount }}
{% trans "Comum" %}: {{ box_type.chance_common }}% | {% trans "Rara" %}: {{ box_type.chance_rare }}%
{% trans "Épica" %}: {{ box_type.chance_epic }}% | {% trans "Lendária" %}: {{ box_type.chance_legendary }}%

{% with box=user_boxes|get_item:box_type.id %} {% if box %}

{% trans "Caixa já comprada!" %}
{% trans "Boosters restantes" %}: {{ box.remaining_boosters }}

{% else %} {% if user_fichas > 0 %} {% else %} {% endif %} {% endif %} {% endwith %}
{% endfor %}
{% else %} {% endif %}
{% endblock %} {% block extrascripts %} {% endblock %}