blob: b740d18e78b469d04a700dfa93342758616877a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "newsletter/common.html" %}
{% load i18n %}
{% block title %}{% trans "Newsletter update" %}{% endblock title %}
{% block body %}
<h1>{% trans "Newsletter update" %} {{ newsletter.title }}</h1>
<p>{% trans "Your update request was successfully received and an activation email has been sent to you. In that email you will find a link which you need to follow in order to update your subscription." %}</p>
{% endblock body %}
|