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


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


  {% blocktrans trimmed context "welcome email" %}
  You will receive an e-mail with notification once this happens.
  {% endblocktrans %}


  {% blocktrans trimmed context "welcome email" %}
  Thank you for your patience and see you soon!
  {% endblocktrans %}

{% elif activation_by_user %}
  {% blocktrans trimmed  context "welcome email"%}
  Before you will be able to join discussion on our site, 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 context "welcome email" %}
  Once your account is activated, you can always sign in to it using the form below:
  {% endblocktrans %}
  {% absoluteurl LOGIN_URL %}
{% endif %}
{% endblock content %}
