{% extends 'main.html' %} {% block title %} - Raffle Dashboard{% endblock %} {% block content %}

Fish Raffle Dashboard

Manage Raffle Species

Upload a CSV with columns species_name and (optionally) quantity_available. New species are added; existing species quantities are updated.

Existing entries are never affected. You can upload again at any time to add a donated species mid-event.

{% csrf_token %}
{% if species_rows %}
Current species list ({{ species_rows|length }}):
{% for row in species_rows %} {{ row.species_name }} {% if row.quantity_available and row.quantity_available != '1' %} ×{{ row.quantity_available }} {% endif %} {% endfor %}
{% else %}

No species loaded yet. Upload a CSV to get started.

{% endif %}
Species Raffle Pools
Total entries: {{ entry_count }}
{% if species_pools %}
{% for species, data in species_pools.items %}
{{ species }}
{% if data.quantity_available and data.quantity_available != '1' %} ×{{ data.quantity_available }} {% endif %} {{ data.count }} entr{{ data.count|pluralize:"y,ies" }}
{% if data.winners %} {% for w in data.winners %}
Winner: {{ w.first_name }} {{ w.last_name }}
{{ w.email }}
Username: {{ w.proposed_username }}
{% endfor %} {% endif %} {% if data.count > data.winners|length %}
{% csrf_token %}
{% if data.entrants %} {% endif %}
{% else %} {% if data.count == 0 %}

No entries yet.

{% else %}

All eligible entrants have won.

{% endif %} {% endif %} {% if data.entrants %}
Show entrants ({{ data.count }})
    {% for e in data.entrants %}
  • {{ e.first_name }} {{ e.last_name }} {% if e in data.winners %} {% endif %} {% if e not in data.winners and data.winners|length < data.quantity_available|add:"0" or e not in data.winners and not data.winners %}
    {% csrf_token %}
    {% endif %}
  • {% endfor %}
{% endif %}
{% endfor %}
{% else %}

Upload a species CSV above to see pools here.

{% endif %}
{% endblock %}