password_reset_key_message.txt 621 B

123456789101112131415
  1. {% load i18n %}
  2. {% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name }}!
  3. We've received a request to reset your password. If you didn't make this request, you can safely ignore this email. Otherwise, click the button below to reset your password.{% endblocktrans %}
  4. {{ password_reset_url }}
  5. {% if username %}{% blocktrans %}In case you forgot, your username is {{ username }}.{% endblocktrans %}
  6. {% endif %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Thank you for using {{ site_name }}!
  7. {{ site_domain }}{% endblocktrans %}