{% extends "base.html" %} {% block title %}Draw result - Random Christmas Bot{% endblock %} {% block content %}

Draw result

{% if error %}

The draw failed: {{ error }}

{% else %}

Draw complete — emails sent to {{ new_draw|length }} participant(s).

{% for row in new_draw %} {% endfor %}
GiverEmailRecipients
{{ row[0] }} {{ row[1] }} {{ row[2:]|join(", ") }}
{% endif %}

← Back to dashboard

{% endblock %}