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

Participants ({{ participants|length }})

Data file: {{ csv_prefix }}_<year>.csv

{% for p in participants %} {% else %} {% endfor %}
NameEmailLast recipients
{{ p[0] }} {{ p[1] }} {{ p[2:]|join(", ") }}
No participants yet for this year.

Exclusions

A giver in an exclusion pair will never be assigned that receiver.

{% for giver, receiver in exclusions %} {% else %} {% endfor %}
GiverReceiver
{{ giver }} {{ receiver }}
No exclusions configured.

Run the draw

This performs the draw, emails every participant their result, and overwrites this year's CSV. It cannot be undone from here.

{% endblock %}