{% extends "layouts/base.html" %} {% load i18n %} {% load itens_extras %} {% block content %} {% if time_remaining and not time_remaining.is_ended %} {% endif %}

{{ season.name }}

{% if time_remaining %}
{% if time_remaining.is_ended %} {% trans "Temporada Encerrada" %} {% elif time_remaining.is_ending_soon %} {% trans "Termina em" %}: {{ time_remaining.days }}d {{ time_remaining.hours }}h {{ time_remaining.minutes }}m {% else %} {% trans "Termina em" %}: {{ time_remaining.days }}d {{ time_remaining.hours }}h {{ time_remaining.minutes }}m {% endif %}
{% endif %}
{% trans "Nível" %} {{ current_level }}{% if next_level %} → {{ next_level }}{% endif %} {{ current_xp }}/{{ xp_for_next_level }} XP
{% if not next_level %}
{% trans "Nível Máximo Atingido!" %}
{% endif %}
{% for level in levels %}
{% trans "Nível" %} {{ level.level }}
{% trans "XP" %}: {{ level.required_xp }}
    {% for reward in level.battlepassreward_set.all %}
  • {% if reward.is_premium %} Premium {% endif %} {% if reward.item_id %}
    {{ reward.item_name|default:reward.description }}
    {% if reward.item_name %}
    {{ reward.item_name }}
    {% endif %}
    {% if reward.item_enchant > 0 %}
    +{{ reward.item_enchant }}
    {% endif %} {% if reward.item_amount > 1 %}
    x{{ reward.item_amount }}
    {% endif %}
    {% endif %} {% if reward.description %}
    {{ reward.description }}
    {% endif %}
    {% if reward in progress.claimed_rewards.all %} {% trans "Resgatado" %} {% else %}
    {% csrf_token %}
    {% endif %}
  • {% endfor %}
{% endfor %}
{% if has_other_pages %}
{% with query_params=request.GET.urlencode %} {% include 'includes/pagination.html' %} {% endwith %}
{% endif %}
{% endblock %}