subscription_update.html 1016 B

12345678910111213141516171819202122232425
  1. {% extends "newsletter/common.html" %}
  2. {% load i18n %}
  3. {% block title %}{% trans "Newsletter update" %}{% endblock title %}
  4. {% block body %}
  5. <h1>{% trans "Newsletter update" %} {{ newsletter.title }}</h1>
  6. {% if error %}
  7. <p>{% trans "Due to a technical error we were not able to submit your confirmation email. This could be because your email address is invalid." %}</p>
  8. {% comment %} Replace the the following dummy with a valid email address and remove this comment.
  9. <p>{% trans "If the error persists, please don't hesitate to contact us at the following email address:" %} <a href="mailto:office@realitylab.at">office@realitylab.at</a></p>
  10. {% endcomment %}
  11. {% else %}
  12. <form enctype="multipart/form-data" method="post" action=".">
  13. {% csrf_token %}
  14. {{ form.as_p }}
  15. <p><input id="id_submit" name="submit" value="{% trans "Update subscription" %}" type="submit" /></p>
  16. </form>
  17. {% endif %}
  18. {% endblock body %}