{% load trans blocktrans from i18n %}
{% blocktrans %}
Dear colleagues,
{{ site.name }} is the result of well over a hundred hours of development work, most of which took place
in my spare time. I developed it with the intention to simplify our work and improve our research
activities. Vice versa I ask you to consider me on publications for which {{ site.name }} was used.
{% endblocktrans %}
{% blocktrans %} To activate your account on {{ site.name }}, please click the following link within the next {{ expiration_days }} days: {% endblocktrans %}
{{ site.domain }}{% url 'registration_activate' activation_key %}
{% blocktrans %} Please view the landing page of {{ site.name }} and write me or call me (Phone 396-8503) what permissions you need. {% endblocktrans %}
{% blocktrans %} Sincerely, Kai Schlamp {% endblocktrans %}
{% comment %} **registration/activation_email.html** Used to generate the html body of the activation email. Should display a link the user can click to activate the account. This template has the following context: ``activation_key`` The activation key for the new account. ``expiration_days`` The number of days remaining during which the account may be activated. ``site`` An object representing the site on which the user registered; depending on whether ``django.contrib.sites`` is installed, this may be an instance of either ``django.contrib.sites.models.Site`` (if the sites application is installed) or ``django.contrib.sites.requests.RequestSite`` (if not). Consult `the documentation for the Django sites framework