{% extends "base.html" %} {% set active = 'dashboard' %} {% block title %}Dashboard - Birthday Manager{% endblock %} {% block content %}

Today, {{ today.strftime('%A %d %B %Y') }}

{% if today_list %}

🎉 Birthday{{ 's' if today_list|length > 1 }} today

{% else %}

No birthdays today

The next celebration is waiting on the calendar below.

{% endif %}

Sends today's birthday e-mail{{ 's' if today_list|length != 1 }} again immediately.

Birthday entries

{% if entries %}
{% for e in entries %} {% endfor %}
First NameLast NameDate of BirthGenderE-mail
{{ e.first_name }} {{ e.last_name }} {{ e.dob }} {{ e.gender }} {{ e.email }}
{% else %}

No entries yet. Add the first birthday above.

{% endif %}

Yearly overview

{% for month in months %}

{{ month.name }}

{% for week in month.weeks %} {% for cell in week %} {% endfor %} {% endfor %}
MoTuWeThFrSaSu
{{ cell.day }} {% if cell.names %}{% endif %}
{% endfor %}

Days marked with a dot have a birthday — hover to see who. Today is outlined.

{% endblock %}