{% extends "base.html" %} {% block title %}History - Random Christmas Bot{% endblock %} {% block content %} {% for year, rows in year_data %}

{{ year }}

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

No data for this year.

{% endif %}
{% endfor %} {% endblock %}