2012-11-06 09:22:46 +00:00
|
|
|
{% load i18n %}{% autoescape off %}
|
2012-06-20 11:39:21 +00:00
|
|
|
{% if org %}
|
2012-11-06 09:22:46 +00:00
|
|
|
{% blocktrans %}You're receiving this e-mail because {{ user }} added you to organization "{{ org.org_name }}" on {{ site_name }}.{% endblocktrans%}
|
2012-06-20 11:39:21 +00:00
|
|
|
{% else %}
|
2012-11-06 09:22:46 +00:00
|
|
|
{% blocktrans %}You're receiving this e-mail because {{ user }} added you to {{ site_name }}.{% endblocktrans%}
|
2012-06-20 11:39:21 +00:00
|
|
|
{% endif %}
|
2012-11-06 09:22:46 +00:00
|
|
|
{% trans "Following is your account information:" %}
|
|
|
|
{% blocktrans %}Email: {{ email }}{% endblocktrans %}
|
|
|
|
{% blocktrans %}Password: {{ password }}{% endblocktrans %}
|
2012-06-20 11:39:21 +00:00
|
|
|
|
2012-11-06 09:22:46 +00:00
|
|
|
{% trans "Please go to the following page and log in:" %}
|
2012-06-20 11:39:21 +00:00
|
|
|
{{ protocol }}://{{ domain }}{% url auth_login %}
|
|
|
|
|
2012-11-06 09:22:46 +00:00
|
|
|
{% trans "Thanks for using our site!" %}
|
2012-06-20 11:39:21 +00:00
|
|
|
|
2012-11-06 09:22:46 +00:00
|
|
|
{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
|
2012-06-20 11:39:21 +00:00
|
|
|
|
|
|
|
{% endautoescape %}
|