blob: fe83797655c054af1add19a5ccf5a49d025d3890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends "newsletter/common.html" %}
{% load i18n %}
{% block title %}{% trans "Newsletter update" %}{% endblock title %}
{% block body %}
<h1>{% trans "Newsletter update" %} {{ newsletter.title }}</h1>
{% if error %}
<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>
{% comment %} Replace the the following dummy with a valid email address and remove this comment.
<p>{% trans "If the error persists, please don't hesitate to contact us at the following email address:" %} <a href="mailto:info@foobar.com">info@foobar.com</a></p>
{% endcomment %}
{% else %}
<form enctype="multipart/form-data" method="post" action=".">
{% csrf_token %}
{{ form.as_p }}
<p><input id="id_submit" name="submit" value="{% trans "Update subscription" %}" type="submit" /></p>
</form>
{% endif %}
{% endblock body %}
|