{# fortunaisk/templates/fortunaisk/lottery_history.html #} {% extends "fortunaisk/base.html" %} {% load i18n humanize fortunaisk_tags my_filters static %} {% block page_title %} {% trans "Lottery History" %} {% endblock page_title %} {% block details %}

{% trans "Lottery History" %}

{% trans "Explore past lotteries, see their winners, and review total payouts." %}

{% if past_lotteries %}
{% for lottery in past_lotteries %}
{{ lottery.lottery_reference }}

{% trans "Ticket Price" %}: {{ lottery.ticket_price|floatformat:2|intcomma }} ISK

{% trans "Start Date" %}: {{ lottery.start_date|date:"Y-m-d H:i" }}

{% trans "End Date" %}: {{ lottery.end_date|date:"Y-m-d H:i" }}

{% trans "Status" %}: {% if lottery.status == "completed" %} {{ lottery.get_status_display }} {% elif lottery.status == "cancelled" %} {{ lottery.get_status_display }} {% elif lottery.status == "pending" %} Pending... {% else %} {{ lottery.get_status_display }} {% endif %}

{% trans "Participants" %}: {{ lottery.participant_count }}

{% trans "Total Pot" %}: {{ lottery.total_pot|floatformat:2|intcomma }} ISK

{% trans "Winners" %}: {% with winners_list=lottery.winners.all %} {% if winners_list %}
    {% for winner in winners_list %}
  • {{ winner.character.character_name }} ({{ winner.prize_amount|floatformat:2|intcomma }} ISK)
  • {% endfor %}
{% else %} {% trans "No winner" %} {% endif %} {% endwith %}
{% if perms.fortunaisk.admin %} {% endif %}
{% endfor %}
{% else %}
{% trans "No past lotteries found." %}
{% endif %}
{% endblock details %}