diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 252cd5123efeb945a5e1a7cd4dd4ef824f2ee74d..4fa7c521d2265157ca19e7e1863c7fba9e763858 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -24,6 +24,7 @@ Fixed * Add permission check to accept invitation menu point in order to hide it when this feature is disabled. * Metrics endpoint for Prometheus was at the wrong URL. * Polling behavior of the whoAmI and permission queries was fixed. +* Confirmation e-mail contained a wrong link. `3.0`_ - 2022-05-11 ------------------- diff --git a/aleksis/core/templates/account/email/email_confirmation_message.txt b/aleksis/core/templates/account/email/email_confirmation_message.txt new file mode 100644 index 0000000000000000000000000000000000000000..f795c60f7b66c75b37217caed8c38c3d7f9295e0 --- /dev/null +++ b/aleksis/core/templates/account/email/email_confirmation_message.txt @@ -0,0 +1,7 @@ +{% extends "account/email/base_message.txt" %} +{% load account %} +{% load html_helpers %} +{% load i18n %} + +{% block content %}{% user_display user as user_display %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Someone tried to register an account with the username {{ user_display }} and your e-mail address on {{ site_domain }}. +If it was you, please confirm the registration by clicking on the following link:{% endblocktrans %} {{ activate_url|remove_prefix:"/django/" }}{% endblock %}