All checks were successful
Build-Release-Image / Build-Image (linux/amd64) (push) Successful in 2m58s
Build-Release-Image / Build-Image (linux/arm64) (push) Successful in 3m24s
Build-Release-Image / Merge-Images (push) Successful in 12s
Build-Release-Image / Create-Release (push) Successful in 9s
Build-Release-Image / Notify (push) Successful in 19s
18 lines
343 B
Django/Jinja
18 lines
343 B
Django/Jinja
{% extends "base.txt.jinja2" %}
|
|
|
|
{% block content %}
|
|
Hi
|
|
|
|
You have added {{mailbox_email}} as an additional mailbox.
|
|
|
|
{% if link %}
|
|
To confirm, please click on this link:
|
|
|
|
{{link}}
|
|
{% else %}
|
|
Please enter {{ code }} as your verification code for this mailbox
|
|
{% endif %}
|
|
|
|
This link will only be valid during the next 15 minutes.
|
|
{% endblock %}
|