{% extends "_email/base_html.html" %} {% load i18n %} {% load url from future %} {% block title %}{% trans board_name=settings.board_name %}Account Activation on {{ board_name }}{% endtrans %}{% endblock %} {% block content %}

{% trans username=user.username %}{{ username }}, you are receiving this message because board administrator has requested you to revalidate your e-mail address.{% endtrans %}

{% trans %}To reactivate your account click the link below:{% endtrans %}

{% trans %}Activate my account!{% endtrans %}

{% trans %}If the above link is not clickable, copy and paste this link into your web browser's address bar:{% endtrans %}

{{ board_address }}{% url 'activate' username=user.username_slug, user=user.id, token=user.token %} {% endblock %}