blob: 65b029826470ef7b01119981e96420a882d225c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "newsletter/common.html" %}
{% load i18n %}
{% block title %}{% trans "Newsletter" %} {{ newsletter.title }} {{ action }} {% trans "activate" %}{% endblock title %}
{% block body %}
<h1>{% trans "Newsletter" %} {{ newsletter.title }} {{ action }} {% trans "activate" %}</h1>
<p>{% trans "Your subscription has successfully been updated." %}</p>
{% endblock body %}
|