user.txt 413 B

12345678
  1. {% extends "_email/users/activation/none.txt" %}
  2. {% block content %}
  3. {{ super() }}
  4. {% trans %}We require our members to prove validity of e-mail address used during registration. To prove that you are owner of e-mail address used to create this account, click the link below:{% endtrans %}
  5. {{ board_address }}{% url 'activate' username=user.username_slug, user=user.id, token=user.token %}
  6. {% endblock %}