123456789101112131415161718 |
- {% load i18n %}{% autoescape off %}
- {% blocktrans %}You're receiving this e-mail because you requested a password reset
- for your user account at the Penobscot Bay Press Community Storefront{% endblocktrans %}.
- {% trans "Please click the following link and enter a new password:" %}
- {% block reset_link %}
- {{ protocol }}://{{ domain }}{% url password_reset_confirm uidb36=uid token=token %}
- {% endblock %}
- {% if not without_usernames %}{% blocktrans with user.username as username %}
- Your username is {{ username }}.
- {% endblocktrans %}
- {% endif %}
- {% trans "Thank you for visiting our site!" %}
- {% trans "Sincerely" %},
- Penobscot Bay Press
- {% endautoescape %}
|