{% extends "misago/emails/base.txt" %}
{% load i18n misago_absoluteurl %}


{% block content %}
{% blocktrans trimmed with user=user %}
{{ user }}, thank you for joining us!
{% endblocktrans %}
{% if activation_by_admin %}
  {% blocktrans trimmed %}
  Before you will be able to join discussion on our forums, one of our administrators will have to activate your account.
  {% endblocktrans %}


  {% blocktrans trimmed %}
  This may take a while, but you will receive e-mail with notification once it happens.
  {% endblocktrans %}


  {% blocktrans trimmed %}
  Thank you for your patience and see you soon!
  {% endblocktrans %}

{% elif activation_by_user %}
  {% blocktrans trimmed %}
  Before you will be able to join discussion on our forums, you have to activate your account. To do so, simply click the link below:
  {% endblocktrans %}
  {% absoluteurl 'misago:activate-by-token' pk=user.pk token=activation_token %}"

  {% blocktrans trimmed with login_form=login_link|safe %}
  Once your account is activated, you can always sign in to it using the form below:
  {% endblocktrans %}
  {% absoluteurl LOGIN_URL %}
{% endif %}
{% endblock content %}
