update.html 656 B

12345678910111213141516171819
  1. {% load i18n %}<!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>{% blocktrans with title=newsletter.title %}Update of subscription to {{ title }}{% endblocktrans %}</title>
  6. </head>
  7. <body>
  8. {% blocktrans with name=subscription.name|default:_("Sir/Madam") title=newsletter.title domain=site.domain url=subscription.update_activate_url %}Dear {{ name }},
  9. you, or someone in your name requested updating your personal information for {{ title }}.
  10. To make changes to your information in our database, please follow this activation link:
  11. http://{{ domain }}{{ url }}
  12. Kind regards,{% endblocktrans %}
  13. {{ newsletter.sender }}
  14. </body>
  15. </html>