{% extends "emails/base_email.html" %} {% load account %} {% load i18n %} {% block content %}
{% user_display user as user_display %} {% blocktrans with site_name=current_site.name site_domain=current_site.domain %} Hello from {{ site_name }}! {% endblocktrans %}
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %} You're receiving this e-mail because user {{ user_display }} has given your e-mail address to register an account on {{ site_domain }}. {% endblocktrans %}
{% trans 'To confirm this is correct, please click the button below:' %}
| {% trans 'Confirm Email Address' %} |
{% trans "If the button doesn't work, you can copy and paste this link into your browser:" %}
{{ activate_url }}
{% trans "If you didn't request this, please ignore this email." %}
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}
Thank you for using {{ site_name }}!
{{ site_domain }}
{% endblocktrans %}