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

Users

{% for u in users %} {% endfor %}
UsernameMFACreated
{{ u.username }}{% if u.id == user_id %} you{% endif %} {{ 'Enabled' if u.mfa_enabled else 'Off' }} {{ u.created_at }} {% if u.id != user_id %}
{% endif %}

Change my password

Two-factor authentication (MFA)

{% set me = users | selectattr('id', 'equalto', user_id) | first %} {% if me and me.mfa_enabled %}

MFA is enabled for your account. You'll be asked for a 6-digit code every time you sign in.

{% else %}

Protect your account with a one-time code from an authenticator app (Google Authenticator, Authy, Microsoft Authenticator…).

Enable MFA {% endif %}

E-mail log

{% if log %}
{% for l in log %} {% endfor %}
Date & timeRecipientE-mail addressSubjectStatus
{{ l.sent_at }} {{ l.recipient_name }} {{ l.recipient_email }} {{ l.subject }} {{ l.status }}
{% else %}

No e-mails have been sent yet.

{% endif %}

Images

Upload images here, then place them inside a template with <img src="/uploads/filename">. Images are embedded inline in the e-mail when it is sent.

{% if images %}
{% for img in images %}
{{ img }} /uploads/{{ img }}
{% endfor %}
{% endif %}

E-mail Template Male

Placeholders: {first_name} {last_name} {age} — insert images with <img src="/uploads/…">

E-Mail Template Female

Placeholders: {first_name} {last_name} {age} — insert images with <img src="/uploads/…">

{% endblock %}