Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

email.html 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. {% load i18n %}
  2. <p>
  3. {% blocktrans with site_domain=site.domain product=product site_name=site.name %}
  4. You have just signed up for a notification to {{ product }} on our
  5. website <a href="http://{{ site_domain }}">{{ site_name }}</a>. If this was you,
  6. please feel confirm your email address by clicking the following link or
  7. copying it into the address bar of your favourite browser.
  8. {% endblocktrans %}
  9. </p>
  10. <p>
  11. <a href="http://{{ site.domain }}{{ notification.get_confirm_url }}">http://{{ site.domain }}{{ notification.get_confirm_url }}</a>
  12. </p>
  13. <p>
  14. {% url catalogue:detail product.slug product.id as product_url %}
  15. {% blocktrans with email=notification.email product_title=product.title product_url=product_url %}
  16. We will send you an email to {{ email }} as soon as
  17. <a href="http://{{ site.domain }}{{ product_url }}">{{ product_title }}</a> is back in stock.
  18. {% endblocktrans %}
  19. </p>
  20. <p>
  21. {% blocktrans %}
  22. If you want to disable your notification at any point in time, use the
  23. following link to unsubscribe:
  24. {% endblocktrans %}
  25. </p>
  26. <p><a href="http://{{ site.domain }}{{ notification.get_unsubscribe_url }}">http://{{ site.domain }}{{ notification.get_unsubscribe_url }}</a></p>
  27. <strong>{% trans "Thank you very much for your interest." %}</strong>