{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "Slot Machine" %}{% endblock %} {% block extrastyle %} {% endblock %} {% block content %}

🎰 {% trans "Slot Machine" %}

💎 {% trans "JACKPOT" %} 💎
{{ config.jackpot_amount }}
{% trans "Fichas" %}
💰 {% trans "Suas Fichas" %}: {{ user_fichas }}

🏆 {% trans "Vitórias Recentes" %}

{% if recent_wins %} {% for win in recent_wins %}
{{ win.user.username }} {% if win.is_jackpot %} 💎 JACKPOT! {% endif %} +{{ win.fichas_won }} fichas
{% endfor %} {% else %}

{% trans "Ainda não há vitórias registradas." %}

{% endif %}

📊 {% trans "Seu Histórico" %}

{% if user_history %} {% for history in user_history %}
{{ history.created_at|date:"d/m/Y H:i" }} {% if history.is_jackpot %} 💎 JACKPOT! {% endif %} {% if history.fichas_won > 0 %} +{{ history.fichas_won }} fichas {% else %} -{{ config.cost_per_spin }} fichas {% endif %}
{% endfor %} {% else %}

{% trans "Você ainda não jogou." %}

{% endif %}
{% endblock %}