data_download.html 653 B

1234567891011121314151617181920
  1. {% extends "misago/emails/base.html" %}
  2. {% load i18n misago_absoluteurl %}
  3. {% block content %}
  4. {% blocktrans trimmed with user=user %}
  5. {{ user }}, you are receiving this message because your data is ready for download.
  6. {% endblocktrans %}
  7. <br>
  8. <br>
  9. <a href="{% absoluteurl data_download.file.url %}">{% trans "Download data" %}</a>
  10. <br>
  11. <br>
  12. {% blocktrans trimmed count expires_in=expires_in %}
  13. This link will remain active for {{ expires_in }} hour from the time this message has been sent.
  14. {% plural %}
  15. This link will remain active for {{ expires_in }} hours from the time this message has been sent.
  16. {% endblocktrans %}
  17. <br>
  18. {% endblock content %}